Questions tagged [heremaps]

This is the tag for information about the HERE Maps application developed by HERE Technologies. HERE Maps is a mapping software application. Use this tag to ask questions related to HERE Maps into your own web and mobile apps, retrieve map information such as addresses and coordinates, etc.

331 questions
1
vote
1 answer

When using the OLP CLI I get error: "Unexpected HRN entity type"

Using the OLP CLI, how do I determine the HRN to use? When I take the HRN that shows in the console for my project and call ./olp app domain list "hrn:here:authorization::myorg:project/projectId" I get the error: "error_description": "errorCode:…
Ross Coundon
  • 647
  • 1
  • 9
  • 20
1
vote
0 answers

Why is Here Routing API v8's response Polyline size 4 times larger than API v7's (deprecated)?

I recently switched from the Here Routing API v7 to the v8 version, and after struggling to change all of the javascript code since it differs so much from the previous version, I discovered that the v8 version returns a Flexibe Polyline that is 4…
tinocoam
  • 108
  • 1
  • 6
1
vote
0 answers

Polyline color change HERE maps

I am trying to change the color of the roads by pulling the properties from base map and for water or landuse.park the "polygons.color" works perfectly fine but when I try to do roads which are polylines, I get an error of undefined reading "color".…
1
vote
0 answers

Android/Java: HereMap Cant download Map w/ Class: I/Choreographer: Skipped 1390 frames! The application may be doing too much work on its main thread

I try to download the map of HereMap to use it offline, but when I create a class for this Here Map download, it initialized well, but the download is not starting... The error message is: I/Choreographer: Skipped 1390 frames! The application may…
ΩlostA
  • 2,501
  • 5
  • 27
  • 63
1
vote
1 answer

navigation icon here maps is missing during Turn by Turn Navigation in HERE SDK

When the application is opened, sometimes the pointer will be displayed and sometimes not. In the case where a pointer is displayed , when we navigate to another screen (Activity/Fragment) and come back to the Map screen, the pointer will disappear.…
1
vote
2 answers

HERE maps - how to get all visible clusters?

I want to get array of currently visible clusters and then get each point data. I create method in React and it seems that method in theme for getClusterPresentation returns all possible clusters for all map zooms. How to get clusters data? This is…
Mag
  • 53
  • 2
1
vote
1 answer

HEREmaps SDK Flutter - Routing error: 6, exception: These credentials do not authorize access, error code: 403

Im using Here SDK (Explore) for Flutter, the account got billinginformations and right credentials. I can show a map and draw polylines on it. But when i try to add a Route it doesnt work with following error: E/routing ( 3234): [ERROR] routing -…
Eric
  • 352
  • 3
  • 11
1
vote
1 answer

Is it possible to use @here/maps-api-for-javascript with latest react-scripts 5.0.0? (ReactJS, Here Maps)

I'm trying to upgrade packages in my project and getting a problem with the use of @here/maps-api-for-javascript. When I use react-scripts 4.0.3, everything is fine and I can interact with the map. But when I use react-scripts 5.0.0, I only see the…
nvipash
  • 91
  • 1
  • 9
1
vote
1 answer

Does HERE map getRoutingService() v8 return list of coordinates?

I am using HERE maps to calculate routes but I use Google maps to display the route. In v7 getRoutingService used to return result.response.route[0].shape which is an array of coordinates which I pass to google services to draw it on map. Here is…
showtime
  • 1
  • 1
  • 17
  • 48
1
vote
1 answer

Here Maps for JavaScript is always displaying a blank map in Angular 13 without errors

I am building an app with Angular 13. The app has two maps powered by Here. Each map is loaded with different components (based on user sessions, you cannot see both at the same time) because they must have some specific configurations. In one of…
Federico Navarrete
  • 3,069
  • 5
  • 41
  • 76
1
vote
1 answer

DomMarkers and DomIcons not working inside a ShadowRoot

I'm trying to use DomMakers and DomIcons inside a ShadowRoot. When the markers load, I get this error: Uncaught TypeError: Cannot read properties of undefined (reading 'getPropertyValue') at rm.Ga (mapsjs-core.js:350:435) at kn…
1
vote
0 answers

Offline Maps HERE-SDK - offline search and navigation

I am using HERE-Android-SDK to build a simple navigation solution with offline maps. While using the offline mode for the search addresses and calculation of a route, I can see that there are results returned from the address-search, which are not…
1
vote
3 answers

Here Maps 'segmentRef' attribute explanation

Can someone explain/point to documentation that explains the 'segmentRef' attribute that gets returned by the Here Routing API v8 when spans="segmentRef". An example of what gets returned is shown below. The middle part seems to be the topologyID…
realdrive
  • 36
  • 4
1
vote
1 answer

Can't set map padding in Here Flutter SDK

In previous versions of Here sdk there was always a function to setup padding. It allows overlapping map with app ui and still centering objects like polyline and polygons inside visible map part. I can't find similar property in flutter sdk. Is…
1
vote
1 answer

Remove Location Indicator from Here maps android SDK

I am trying to update user location using: private void addLocationIndicator(GeoCoordinates geoCoordinates, LocationIndicator.IndicatorStyle indicatorStyle, double orient) { LocationIndicator…