here-api

Using Google maps in Windows Phone 8

坚强是说给别人听的谎言 提交于 2019-12-04 11:21:29
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 memory leak, and using them is not possible. Perhaps more accurately, but over time will be a huge

Here Map Premium plan Map.InfoBubbleAdapter() ,hideInfoBubble ,getInfoBubbleContents and isInfoBubbleVisible missing?

十年热恋 提交于 2019-12-04 06:53:09
问题 I am trying to show the custom layout when user clicks on the marker object. The basic pack code works properly . However when i shifted to premium pack it does not have Map.InfoBubbleAdapter(),hideInfoBubble,getInfoBubbleContents and isInfoBubbleVisible. I am not even able to open the infoBubble when user click on marker too. This is the code for custom view in basic pack i used. hereMap.get(new Map.InfoBubbleAdapter() { @Override public View getInfoBubbleContents(MapMarker mapMarker2) {

HERE maps - getting road type based on gps coordinates

假如想象 提交于 2019-12-04 06:22:08
问题 Is it possible to get the type of road (e.g. motorway, primary, secondary) for given coordinates, using HERE maps RESTful API? 回答1: You can use the "getlinkinfo" endpoint of the routing service together with the "linkattributes=all" parameter to get the corresponding functional class value of a certain link: http://route.st.nlp.nokia.com/routing/6.2/getlinkinfo.xml?app_id=DemoAppId01082013GAL&app_code=AJKnXv84fjrb0KIHawS0Tg&waypoint=50.05564304861044,8.38889128575724&linkattributes=all More

How to add a static map marker in the HERE maps Android sdk?

安稳与你 提交于 2019-12-04 05:10:57
问题 I would like to make markers that doesn't move when the map rotates, exactly like the polylines. My goal is to give the marker a single orientation that never changes even when getsures occure. I have tried with every marker type but I can't get the wanted effect. Any kind of help would be appreciated since I am stuck here for really long hours 回答1: You can draw a simple rectangle with both front and back facing sides textured as follows: // Two triangles FloatBuffer buff = FloatBuffer

Traffic flow data XML tags meaning

妖精的绣舞 提交于 2019-12-04 04:11:30
问题 I am looking for real-time traffic flow data. I found the traffic API is what I need: Click here but I really don't know what the meanings are for those XML tags, such as <FI> <TMC PC="11531" DE="Linden" QD="-" LE="0.8535"/> <CF CN="0.86" FF="69.59" JF="0.17" SP="70.13" TY="TR"/> </FI> I found the meaning of TMC DE PC But I cannot find CF CN FF JF SP TY. Anyone know these abbreviations ? Many thanks, Chuansheng 回答1: I agree that it's quite hidden, but you can find the explanation for xsd

Nokia Maps: retrieve speed limit based on coordinates using REST API

断了今生、忘了曾经 提交于 2019-12-03 08:36:10
I am sure it's possible to retrieve speed limit on the road based on coordinates. I just can't find any example (rest API). As I understand I need to use routing mechanism to do that? You will need to use the getLinkInfo endpoint from the Enterprise Routing API. . The speedLimit element returned is in m/s so multiply by 3.6 for km/h or 2.23 for mph . If the speedLimit element is missing then the national speed limit applies. http://route.st.nlp.nokia.com/routing/6.2/getlinkinfo.json?waypoint=52.5308,13.3846&app_id= your_app_id &app_code= your_app_code A working example can be found on the HERE

Here map offline implementation [closed]

两盒软妹~` 提交于 2019-12-02 09:12:57
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 the demo application that has successful implementation on "Offline Maps (MapLoader)" of Here Map SDK? There is an official HERE example exactly for that usecase (offline mapdata download, update and checking for updates) on https://tcs.ext.here.com/mobilesdk_examples Direct links:

Here Maps Android SDK call to PositioningManager start method returns false

别来无恙 提交于 2019-12-02 08:23:56
问题 I've read this question and tried its answer and it doesn't work for me. I made a very simple test application, here's the manifest: <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/> <uses-permission android:name="android.permission.READ_PHONE_STATE"

windows phone 8 old map vs new map

二次信任 提交于 2019-12-02 06:40:35
问题 I have a two WP8 projects. This is projects with map. First project with new Nokia maps and second project with old Bing maps . I noticed inappropriate behavior of old maps. They consume large amounts of memory, and when I go away from the maps then the memory is not freed. In WP7 Bing maps behave differently, it spent as much RAM memory, but when I go away from the map, the memory is immediately freed. How can I return the memory, I have a big problem with old maps, I exceed the limit of 90

How to add a static map marker in the HERE maps Android sdk?

会有一股神秘感。 提交于 2019-12-02 03:53:22
I would like to make markers that doesn't move when the map rotates, exactly like the polylines. My goal is to give the marker a single orientation that never changes even when getsures occure. I have tried with every marker type but I can't get the wanted effect. Any kind of help would be appreciated since I am stuck here for really long hours You can draw a simple rectangle with both front and back facing sides textured as follows: // Two triangles FloatBuffer buff = FloatBuffer.allocate(12); buff.put(0- delta); buff.put(0- delta); buff.put(1.f); buff.put(0 + delta); buff.put(0 - delta);