Questions tagged [here-maps-rest]
259 questions
0
votes
0 answers
Get data from datapoint when tap
`function startClustering(map, data) {
var dataPoints = data.map(function (item) {
return new H.clustering.DataPoint(item.latitude, item.longitude,null,item.vehicleId);
});`
Here I want to get item.vehicleId.
When I click a cluster, need to…

sham
- 11
- 2
0
votes
0 answers
HERE Maps OAuth URLs for a ZOHO CRM Extension
Tried checking documentation for a few days and contacted support - Looks like GET URLs for OAuth are not available (like Google API 'https://accounts.google.com/o/oauth2/v2/auth?scope=https://www.google.com/m8/feeds`) for HERE Maps. I need the…

user9371102
- 1,278
- 3
- 21
- 43
0
votes
1 answer
@here/maps-api-for-javascript has no exported member H
I am following the Heremap tutorial present at https://developer.here.com/documentation/maps/3.1.30.15/dev_guide/topics/angular-practices.html.
I copy pasted the code mentioned in it in my angular component. But the compiler complains…

Nealesh
- 629
- 6
- 12
0
votes
1 answer
How to add custom full screen control behavior with HERE Maps API Javascript
Is there any way to intercept the default behavior of the full screen control using the Here Maps API Javascript?
I want to prevent the custom full screen behavior when you press the control without eliminating the UI. If the user clicks on the…

Nitin Karande
- 1,280
- 14
- 33
0
votes
0 answers
How do I test the re-routing feature in the development mode in Flutter?
In here sdk, we wanna use the re-routing. Means, whenever user deviate from the route that he/she is travelling then it will re-calculate different route again and render on the screen. But there is a problem, we're using simulation of the GPS which…

Aryan Agrawal
- 9
- 2
0
votes
1 answer
How can I get a speeding profile using Here Maps Route Matching API?
We are using Here MapsRoute Matching API (https://developer.here.com/documentation/route-matching/dev_guide/index.html) to calculate the most sensible route based on many trace points.
We use the POST endpoint and we pass the tracepoints in GeoJSON…

Ismael Jebril
- 1
- 1
0
votes
1 answer
HERE maps Python SDK v2 failing to authenticate with the platform
I am struggling with accessing resources on the HERE platform using the Python Data SDK v2. Specifically I am trying to run the following example…

Lionel Peer
- 11
- 2
0
votes
1 answer
HERE Geocoding API and PowerBI
I'm kind of new in this API world.
I'm facing some issues with Here Maps API and PowerBi scheduled refreshes.
Below is how I made my API which does works in PowerBI Desktop
I've tried to use the function RelativePath in PowerBi but I have another…

Guilherme Gagliardi
- 13
- 2
0
votes
1 answer
How to extract all road data information (maxspeed, road width, nr. of lanes etc...) from HERE API based on coordinates?
I would like to get as much information as possible about road info by giving the coordinates.
So far I use this API url: https://fleet.ls.hereapi.com/2/calculateroute.json with a POST request like this:
url =…

Fotis
- 11
- 2
0
votes
1 answer
HEREMAPS Flutter SDK Navigate Edition - Import Route from Intermodal Routing API
Is there an convenient way to import a Route from the HERE Intermodal Routing API, like the intendet way to import Routes from other HERE api via a Routehandle? Or an easy other way that doesn't change the Route like importing via GeoCoordinates ?

Eric
- 352
- 3
- 11
0
votes
1 answer
HERE Maps 'Avoid TollRoad' supported regions
I want to know if the Avoid=TollRoad parameter is supported across all regions/countries. Is there any documentation where I might be able to see what regions are supported? Asking for a web app. Thank you.

Adi
- 3
- 1
0
votes
0 answers
HERE MAPS Map matching API documentation
im using m.fleet.ls.hereapi.com/2/matchroute.json endpoint to mapmatch GPS traces.
The result provides values like:
[1] "lat" "lon"
[3]…

Andreas
- 397
- 4
- 18
- 37
0
votes
1 answer
Animate marker location to another in HEREMAPS
currently, i'm developing a map application similar to uber, and since im using Googles location service " intermitent thread " , i get the users location every 10-20-30 seconds and i update its new location on the map, by simply cleaning the…

Victor Pierre
- 13
- 5
0
votes
1 answer