Questions tagged [heremaps-android-sdk]

This is the tag for information about the HERE Maps application sdk for the Android platform developed by HERE Technologies. HERE Maps is a mapping software SDK. Use this tag to ask questions related to HERE Maps into your Android mobile apps.

94 questions
0
votes
1 answer

What is the Faster way to track users current location periodically?

I have finished the product I was developing, but currently, we track the users ( passenger ) location as well as the drivers too slowly. This is the code I use to track and update the map with the passangers/ drivers icon as it moves : import…
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…
0
votes
2 answers

Heremaps native crash (SIGABRT)

We're investigating on an app developed by another team a native Crash on Android related to HereMaps (HERE SDK Navigation edition, navigate-4.10.2.0.7878) with this stacktrace: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** pid: 0,…
0
votes
1 answer

Draw traced lines to illustrate Pedestrian routing in HERE SDK Lite Edition

So i was wondering if this edition is able to do such a thing. Currently, im drawing a bus route in blue with illustrated waypoints and that is fine so far. The passanger needs to walk his way up to the bus stop and i want to illustrate that route…
0
votes
1 answer

How many times vehicle passes on same route

Can we define how many times vehicle should pass on a same route? Basically we need an API in here maps where we can configure/define how many times a vehicle should pass on a same route?
0
votes
0 answers

HERE SDK Orientation change too late

I am using HERE-Android-SDK to build a simple navigation solution with offline maps. In order to automatically center and rotate the map (depending on location and orientation of the user) I am using the PositioningManager class from the HERE-SDK.…
0
votes
1 answer

Android/Java: How to install a package country offline in HereMap?

I try to download the packages that I need for using the map offline, but nothing happens. 3.x based Premium Edition I trie many ways like this documentation of HereMap, like this ticket or this ticket but nothing works, nothing is firing the…
ΩlostA
  • 2,501
  • 5
  • 27
  • 63
0
votes
1 answer

Here Advanced Positioning not Working on Android 11

I've implemented these instructions Advanced Positioning By Here to achieve the functionality described by them. It is working with Android 10 and below, but I cannot get it to work with Android 11. In the code below I try to make Positioning…
0
votes
0 answers

HERE MAPS load very slowly on physical devices

I'm working with HERE MAPS navigate sdk on my flutter project. The maps load and search super fast on the simulators but when I run using a physical device (iPhone or Android) it loads super slow. Literally takes minutes to search or load tiles. I…
0
votes
1 answer

HERE Android SDK - Navigate Edition: Route calculation waypoint limitation and simulation stoppage

I'm encountering two issues when using HERE SDK for Android, they may be related or may not be, but I'm not entirely sure: Route calculation waypoint limit There's a limit to the amount of waypoints that can be used when calculating a route…
user13191088
  • 36
  • 1
  • 5
0
votes
1 answer

Issue on Navigation manager listener and Position manager listener in Android [here-api]

Navigation and simulation is working fine for the first day and then when same actions are performed on next day, navigation manager listeners and position listeners are not working. But when I clear the app storage data, they start to work again…
0
votes
1 answer

How can i show and interact with points of interest (pois) on Here Maps on an Android application?

I'm creating an application on Android in JAVA which is uses Here Maps. What I'm trying to do is to add pois by categories when zooming in and get coordinates when clicking on one of them. I tried to create a custom map style using Map Style Editor…
0
votes
1 answer

How can I calculate number of transactions in one month using HERE SDK?

I'm using the Here android sdk and I'm trying to estimate the number of transactions by route. I'm just using the routing, the navigation and I have disabled the traffic. Does anyone able to tell me how can I estimate the number of transactions…
0
votes
1 answer

MapGesture.OnGestureListener to let user select route they want

UPDATE BELOW!! I'm trying to let the user decide which of the 3 routes provided, they want to take. Here is the screenshot of the routes. I am using the HERE SDK FOR ANDROID (PREMIUM EDITION) 3.18.5 Here is my code for adding the routes to the…
0
votes
1 answer

How to get via route details in here map route?

I am able to get the following details from route object like : route duration,route length and eta etc.. Route route = routeResultList.get(position).getRoute(); int routeDuration = route.getTtaExcludingTraffic(Route.WHOLE_ROUTE).getDuration(); int…