Questions tagged [here-maps-rest]

259 questions
0
votes
2 answers

Geocoding returns street, but not house (but house is in HERE database)

API: https://geocode.search.hereapi.com/v1/geocode That is the random house in the Spain, Alicante, what I just picked to show the problem. So, we have two queries: Calle de los Montesinos, 3 …
0
votes
1 answer

How to use previosly calculated route in Here Navigation SDK version 4.7.4?

I am using Here SDK version 4.7.4 for the Android navigation app. So, We calculate the route using our web portal and want to use the same route that we calculated(using the web portal by calling here REST API) in the Android Navigation app. I have…
H_H
  • 1,460
  • 2
  • 15
  • 30
0
votes
1 answer

Retrieval of Area Shapes - Here Maps API with V7

Is there any way to retrieval of multiple polygons, Like for e.g, If I should search for "ABC" and "XYZ" using additionaldata as 'city', then I should get both drawn Polygons at the same time. As per my understanding, in V6.2 we can retrieve only…
0
votes
1 answer

Best route based on HERE Studio data

what I'm trying to do it's quite simple, but I can't figure out how to do it with HERE. I have multiple polygons with a property [0...10] that defines the air quality of an area. What I need to do is to create an optimal route for pedestrians in…
0
votes
1 answer

Discover / Autosuggest and calculateroute APIs do not return the same distance from the same point a to the same point b

I've been working with Here Maps APIs and while testing the APIs I have noticed that the results of the distance from a point A to B using the discover and autosuggest APIs differ from the results given by the calculateroute API Here is an…
Zarbout
  • 73
  • 1
  • 8
0
votes
1 answer

HERE API autocomplete does not return Mexico City

HERE API autocomplete does not return Mexico City with the following request: https://autocomplete.search.hereapi.com/v1/autocomplete?q=mexico&apikey=[myApiKey]&lang=en-US&types=city It worked fine with the old API. Is there something wrong with my…
imld
  • 1
0
votes
1 answer

Here Maps cors problem - only local resources (no external resources)

We are working on a customer project that would require that no resources are loaded from external resources (strict corse policy). Is there a way to use here maps with local resources only?
Kaito
  • 316
  • 1
  • 4
  • 14
0
votes
1 answer

Multiple location filters

I would like to be able to send requests with multiple 'circle-filters' or 'bounding box-filters'. For example: autosuggest?in=ONE-CIRCLE;ANOTHER-CIRCLE&q=some…
0
votes
1 answer

Distance between two waypoints HERE MAPS ROUTING API

I was wondering whether anyone could help me figure out how to receive the distance between two waypoints information from Here Maps using a Data poller written in js. The following is the query function: function SetOptions(objectDict)…
Kayoshin
  • 3
  • 2
0
votes
1 answer

HERE Maps: Can't find domain whitelist feature

Any idea where I could find that feature from the docs? 1st image is my screenshot from my developer page 2nd is from the Here documentation
0
votes
1 answer

HERE API Fleet Telematrics search timeout issue

''Couldn't reach way point 61 due to search timeout'' I am passing 66 waypoints (all in one city) with ;sort to get optimized route. But 6 coordinates cause this issue. If I remove those 6 coordinates I get route. But interesting part is that if I…
0
votes
1 answer

CRITICAL BUG in HERE API: autosuggest ignores result_types parameter since today

Today the autosuggest endpoint of the HERE API (https://places.ls.hereapi.com/places/v1/autosuggest) started ignoring the result_types parameter. Example: if you make a get request to /autosuggest with result_types=place,address you still get…
Jonas Lüthke
  • 1,480
  • 10
  • 11
0
votes
1 answer

Set departure datetime in https://route.api.here.com/routing/7.2/calculateroute.json not working?

I'm trying to do truck routing using the HERE calculateroute service. I need to calculate the estimated arrival time. From my understanding this should work if I simply add departure="2020-03-10T17:00:00+02" or "now" to the request. However, if I…
markai
  • 101
  • 1
  • 8
0
votes
2 answers

Best practice to use HERE Rest API - directly via client or through my backend server

I'm planning to use HERE Fleet Telematics API. However I'm not sure about if it's okay or not to expose apiKey What is the best practice to call the API? call it directly via client or make client calls to my backend server and have the server make…
heartmon
  • 1,411
  • 2
  • 13
  • 14
0
votes
1 answer

Does the default route calculator use shortest time or shortest distance?

When HERE is calculating a route, by default, does it use shortest distance or shortest time? We have an integration for our routing software to use HAZMAT routes, but we do not specific how to calculate the route other than which roads to exclude…