here-api

How to implement current location blue icon in Here Map

邮差的信 提交于 2019-12-22 05:53:11
问题 I am working with the Here Map SDK and I need to show a blue icon with circle animation for current location like in image. Can anyone tell me how to do it. Right now I have code which sets the icon only which is blue dot. I don't know how to add circle animation to it. Note that the mMap reference is a Map object from the Here Android SDK. mMap.getPositionIndicator().setVisible(true); mMap.getPositionIndicator().setZIndex(0); mMap.setZoomLevel(15); mMap.getPositionIndicator()

How to implement current location blue icon in Here Map

一世执手 提交于 2019-12-22 05:53:10
问题 I am working with the Here Map SDK and I need to show a blue icon with circle animation for current location like in image. Can anyone tell me how to do it. Right now I have code which sets the icon only which is blue dot. I don't know how to add circle animation to it. Note that the mMap reference is a Map object from the Here Android SDK. mMap.getPositionIndicator().setVisible(true); mMap.getPositionIndicator().setZIndex(0); mMap.setZoomLevel(15); mMap.getPositionIndicator()

Launch Nokia Maps in Windows Phone 8

倖福魔咒の 提交于 2019-12-21 20:44:17
问题 Problem I want to launch Nokia Maps inside Windows Phone 8 but I can't find the URI scheme which would allow me to do this. Nokia Maps doesn't seem to listen to their REST Api or url either. (While this does work in Windows Phone, it's not using the Nokia Map it uses the browers) My eventual goal is to figure out all the things Nokia Maps can do (X to Y, center on a gps coordinate, label locations, etc), and access them through app launching. I originally tried the bingmaps URI scheme: http:/

Using Google maps in Windows Phone 8

北城以北 提交于 2019-12-21 17:51:44
问题 It's possible using Google maps in Windows Phone 8? The question may seem strange, since the internet is very much a post about it. But in practice, I was faced with real problems. The only way I know to use Google maps (with MapTileLayer.TileSources) is described in this article. But you can not replace the tiles in the new map control in WP 8. Of course we can use the old map contol plugging the appropriate library. This is where I have problems begin. The old Bing Map control in WP8 has a

Reading traffic flow data from HERE maps rest API

喜欢而已 提交于 2019-12-20 11:35:32
问题 I am trying to use HERE maps REST API to get information about real-time traffic flow. The sample requests in HERE documentation work fine, however, I cannot find anywhere any documentation of the response (meaning of particular tags, such as <TRAFFICML_REALTIME> , <FIS> or <RW> ). Does anyone know how to obtain such a documentation? Note: On HERE website I have found that all technical questions should be posted here and that their development support team is actively monitoring

Here map offline implementation [closed]

ε祈祈猫儿з 提交于 2019-12-20 06:38:53
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I am making an android application currently that will use "Here map SDK" for offline map navigation. I have followed the documentation given in https://developer.here.com/mobile-sdks/documentation/android-hybrid-plus/topics/maps-offline.html But I am having problem on its Implementation. Q: Can Anyone provide me

HERE API never runs batch job, always returns accepted status

£可爱£侵袭症+ 提交于 2019-12-20 04:55:48
问题 For some reason my application stopped working this morning. After submitting a job, when making a request for it's status, it only returns accepted Here's the code I'm using to create and run the job: $url = "https://batch.geocoder.api.here.com/6.2/jobs?action=run&app_code=".$app_code."&app_id=".$app_id."&mailto=stackoverflow@example.com&outcols=latitude,longitude,locationLabel&outputcombined=true&indelim=|&outdelim=|&language=hu-HU&header=true"; if($cURLHandler) { curl_setopt($cURLHandler,

Unable to submit archive including Here Maps Premium SDK with Xcode 8.2.1

[亡魂溺海] 提交于 2019-12-20 00:59:15
问题 archive upload failure messages screenhot Xcode was failing to submit a project including dynamic library "NMAKit.framework" required for Here Map Premium for iOS functionality. (uploading the sample project included in Here Maps Premium SDK for iOS to avoid side effects caused by my project leading also to upload failure) Bitcode was disabled in project's build settings. I'am using the latest Xcode Version 8.2.1. I don't have trouble submitting the app without NMAKit.framework. It seems like

Image as pushpin on maps - Windows phone 8

孤人 提交于 2019-12-18 18:08:44
问题 im trying to add a image to a windows phone 8 map, to serve as a pushpin i have the following code on my XAML <phone:PhoneApplicationPage xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas

HERE places REST apis returns web ui instead on json

拜拜、爱过 提交于 2019-12-14 03:04:47
问题 I am evaluating HERE places APIs. However, the url does return the web page instead of plain JSON as response. Example query: https://places.cit.api.here.com/places/v1/autosuggest?app_id={YOUR_APP_ID}&app_code{YOUR_APP_CODE}&at=52.5304417,13.4111201&q=rest&pretty I need the response as simple JSON but can't find any information on the documentation page. 回答1: The answer is to add callback parameter to the url. Example: https://places.cit.api.here.com/places/v1/autosuggest?app_id={YOUR_APP_ID}