Questions tagged [here-api]

This is the tag for information about the HERE platform APIs, which allow you to embed HERE Maps into your own web and mobile apps, and retrieve map information such as addresses and coordinates.

The HERE Location platform (formerly Nokia/Ovi Maps) consists of a series of location-based services available through a set of web-based APIs and mobile SDKs for iOS and Android. It is also the maps provider behind many online services including Bing maps, Yahoo maps, and of course HERE Maps.

This is the place for questions about the HERE public and Enterprise web-based Location APIs and Mobile SDKs, including:

REST APIs

Platform Extensions

  • Custom Location Extension
  • Geofencing Extension
  • Fleet Connectivity Extension
  • Platform Data Extension
  • Route Match Extension
  • Toll Cost Extension
  • Waypoints Sequence Extension

JavaScript APIs

Mobile SDK

Official documentation: https://developer.here.com/

3320 questions
19
votes
3 answers

App crashes (sometimes) with Fatal signal 11 (SIGSEGV), code 1

I am developing an app with the HERE SDK, and everything worked fine until now. I get errors like this one: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x750057 in tid 10206 (FinalizerDaemon) or this one: Fatal signal 11 (SIGSEGV), code 1, fault…
David Seroussi
  • 1,650
  • 2
  • 17
  • 34
11
votes
1 answer

How to set the opacity of Tile Sources in Nokia Maps for WP8?

I want to take advantage of some of the new features of the Windows Phone 8 Nokia Maps API (Microsoft.Phone.Maps.Controls namespace). I have a sequence of TileSource classes, each with a different image. I play the images back in a loop on the…
msbg
  • 4,852
  • 11
  • 44
  • 73
10
votes
2 answers

How to redraw Here Map when container resizes?

I hit a peculiar problem today which I haven't encountered or noticed before. While setting up a map in Here Maps 3.0, I noticed that if the browser window is "small", less than a full-screen one, during loading the map, also the map will stay small…
Veksi
  • 3,556
  • 3
  • 30
  • 69
9
votes
2 answers

Asynchronously loading Nokia Maps Javascript API

I'm trying to load the Nokia Maps javascript API asynchronously : var oScript = document.createElement('script'); oScript.type = 'text/javascript'; oScript.async = true; oScript.src =…
tchap
  • 3,412
  • 3
  • 29
  • 46
8
votes
2 answers

HERE Places API: not all items have PVID

I'm using HERE Places API. Firstly I'm doing a search. For Example this query…
demo
  • 6,038
  • 19
  • 75
  • 149
8
votes
8 answers

How to implement current location blue icon in Here Map

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…
djk
  • 3,671
  • 9
  • 31
  • 40
8
votes
2 answers

How to remove previous infobubble, if I click different marker in HERE Map?

Here below is my code to add an infobubble. I want to remove the current infobubble previously after click(tap) on a different marker. function addInfoBubble(map) { var group = new H.map.Group(); map.addObject(group); // add 'tap'…
Habib Azka rama
  • 203
  • 5
  • 15
8
votes
2 answers

How to call HERE Maps API v3 using HTTPS

How can I call HERE maps through HTTPS ? I'm using HTTPS on my server so when I call this:
ricvargasdev
  • 83
  • 1
  • 6
7
votes
1 answer

Interpreting HERE Maps real-time traffic tags

I've read all the HERE Maps API documentation but couldn't find the answer. What is the meaning of the XML tags in the HERE real-time traffic REST API output?
Bonnie
  • 271
  • 2
  • 6
6
votes
1 answer

Here Maps - cannot authorize to Maps Feedback API

Here Maps provide Maps Feedback API for i.e. submit information about missing places on their maps. I created a project and generate API Key which I used for Places API with success. Next, I tried to use it with Feedback API, but it failed. Oddly…
Mike Br
  • 888
  • 5
  • 11
6
votes
1 answer

Here Maps API JavaScript zoom into bounds with margin

I have several markers in a group and I want to zoom in, so they're all visible. With version 3.0 of mapsjs I could do this: var cameraData = map.getCameraDataForBounds(group.getBounds()); map.setZoom(cameraData.zoom - 0.5,…
Sebastian
  • 92
  • 1
  • 7
6
votes
1 answer

HERE Routing issues with TRUCK setting

We are building mobile application for truck navigation. When using HERE SDK route calculation for trucks, it sometimes tries to avoid a particular road segment, that is in reality suitable for trucks. One example - highway crossing: When I…
6
votes
1 answer

Heremaps interactive javascript API : maptile load event

I implemented heremaps in an angular app and use it to print a PDF using wkhtmltopdf, the problem is that I need to have a reliable event to listen to in order to inform wkhtmltopdf that my map is fully loaded and ready to be printed. Specifically…
Alfred
  • 649
  • 5
  • 11
6
votes
1 answer

NMACoreRouter calculateRouteWithStops no callback (swift)

I'm trying to create a route using Here API in Swift but I'm having some issues because the completion block is never called so I cannot know exactly what is the problem. Here is my code: let coreRoute = NMACoreRouter() let startPoint =…
razvan
  • 133
  • 4
6
votes
2 answers

Gradle native libraries not found on device but present in apk

My application uses Here SDK and Twilio SDK. Both uses native libraries (Here SDK with native libraries locally plugged in from /libs and /jniLibs folders, Twilio SDK plugged in from jCenter). But on Android 5.1 Here SDK throws exception "MISSING…
1
2 3
99 100