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
0
votes
1 answer

HERE SDK for Flutter: exit information in maneuvers

Is there a way with HERE SDK for Flutter to get information about the motorway exit? I read the documentation but I can't find anything. I would like to show the name of the next motorway exit the driver should follow.
whitecircle
  • 237
  • 9
  • 34
0
votes
1 answer

Do we have a sanbox for HERE Map Feedback API

Am I right that for developers' purposes: testing and actual development we just need to use credentials posted here https://developer.here.com/documentation/examples/rest/map_feedback/place-details-feedback? E.g we do not have any special endpoint…
vadym1930
  • 66
  • 6
0
votes
1 answer

How to decode the OpenLR string in a HERE Traffic API v7 response?

I'm currently building a client that requests Traffic Flow data from the Traffic API v7: https://data.traffic.hereapi.com/v7/flow?locationReferencing=olr&… I would like to decode the OpenLR Location Referencing string contained in the response, but…
mattsches
  • 583
  • 4
  • 6
0
votes
1 answer

Cannot read properties of undefined (reading 'Platform') for Here Maps with React + Typescript

I'm using the demo code to build a simple Here map using React + Typescript. I'm getting a TypeError: Cannot read properties of undefined (reading 'Platform') at line #11: 8 | React.useLayoutEffect(() => { 9 | if(!mapRef.current) return; …
Karim Ibrahim
  • 61
  • 1
  • 7
0
votes
1 answer

How to translate OSM node ids to HERE node ids?

I have part of an OSM way between two OSM node ids 5264306189 and 5264306190 (taken from openstreetmap) as you can see in the image below. What would be the equivalent node ids, or what is the right way to translate/represent this in a HERE map and…
Antonio Gomez Alvarado
  • 1,842
  • 2
  • 13
  • 24
0
votes
2 answers

HERE Search parameter 'r' not functioning

I am calling the public transit v8 like this https://transit.hereapi.com/v8/stations?in=51.492597,-0.156927;r=1000&return=transport&apiKey=my_key However, no matter what i change the r value to it continues search the default distance, whether…
al246
  • 220
  • 6
  • 16
0
votes
2 answers

Calculate routes via GET - Polyline incorrect

Iam testing routing API(https://developer.here.com/documentation/routing-api/api-reference-swagger.html) and all seems to be working as expect except polyline. Here I share my service invocation curl --location --request GET…
0
votes
1 answer

HERE Truck Transport Tile (trucknopttile)

We use Routing API v8 to build truck routes! In our country constructed many new roads! But info on 'trucknopttile' tile is incorrect at now! Truck route built in incorrect way! How can we improve this information and change this behavior? Does v8…
Alex
  • 1
0
votes
1 answer

Here Maps navigation sdk returns Arabic city/street names in english navigation directions

Here Maps navigation sdk returns Arabic city/street names in english navigation directions Text returned by ManeuverNotificationDelegate Voice message: Now keep right and then keep right towards القرهود. This is set …
Syed Ismail Ahamed
  • 349
  • 1
  • 6
  • 17
0
votes
1 answer

how drawing polygon at @here/maps-api-for-javascript

i want drawing like google map 'DrawingManager', It looks like:drawing-control var venuesProvider = new H.venues.Provider() // property 'venues' does not exist"@here/maps-api-for-javascript": "^1.30.9" venuesService.loadVenue(VENUE_ID).then(venue…
0
votes
1 answer

Get the nearest location from start location

I want to get the nearest location of predefined locations to the start location. for example : Post…
0
votes
1 answer

Here Maps API - group.getBoundingBox is not a function

Trying to group map Markers then focus and zoom on the group. I have followed the Docs: Zooming to a Set of Markers script public viewGroupMarkers() { // CREATE MARKERS const toronto = new H.map.Marker({lat:43.7, lng:-79.4}); …
Evan
  • 2,327
  • 5
  • 31
  • 63
0
votes
2 answers

Turn-by-turn latitude and longitude on HERE Routing API

I want to get the latitude and longitude per instruction on the actions I get from HERE Routing API v8. I get the maneuvers from HERE Routing v7 but not on v8. I tried all the return…
Gene
  • 21
  • 1
  • 2
0
votes
1 answer

Here maps Getting attractions / places aling route

I am using the Routing service to get the route between two points. I would like to return attractions or places along or near the route, if possible. I have searched but unable to find anything that looks like it does what I need.
Judson Cooper
  • 51
  • 1
  • 7
0
votes
1 answer

Retrieve travel times from HERE without reoptimizing waypoint order

How would we pass in existing waypoints to get estimated arrival times WITHOUT reoptimizing the existing order of the waypoint list? This is needed when the customer requirements mean we have to uses a sub-optimal route, or when changes require…