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
2 answers

Migrating off of the MSDKUI

I have an old project that needs updating. It is using the MSDKUI. There is a note at the bottom of the MSDKUI iOS githib page: https://github.com/heremaps/msdkui-ios Maintenance Notice The MSDKUI project will be discontinued as it is incompatible…
Schwarz Software
  • 1,114
  • 8
  • 22
0
votes
1 answer

Lane information doesn't show in Here Map

I am working in an app with maps using Here Maps but when the navigation launchs, the lane information doesn't show. I am following this example -->…
0
votes
1 answer

HERE SDK Android: Routing error VIOLATES_OPTIONS

When trying to calculate this route, I'm getting a VIOLATES_OPTIONS error with violations: [BLOCKED_ROADS]. Premium Android SDK 3.17 Route options: val routeOptions = RouteOptions().apply { transportMode = RouteOptions.TransportMode.TRUCK …
gnj
  • 138
  • 1
  • 8
0
votes
1 answer

Live navigation instructions from the HERE app on smartphone

Does the SDK (Lite Version) sufficient for an application that prints the live navigation instructions that comes from the phone's app during navigation? I don't want to calculate any routes, nor display a map. I want to get the current instruction…
0
votes
0 answers

HERE-sdk greatly increases the size of my application up to 150 mb. Google play has a limit on the apk up to 100 MB . How to solve

To use here map in android, it requires to download the HERE-sdk.aar and HERE-sdk-javadoc. Overall size of this files is 100 mb. These files increases the size of my application up to 150 mb, because without these files size of my apk is 50…
0
votes
2 answers

HERE Map SDK configure with multiple build variants with different applicationId

How can I use HERE map SDK with multiple build variants with different applicationId like - com.example and com.example.debug There is only one input for package name in HERE map console.
Naresh NK
  • 1,036
  • 1
  • 9
  • 16
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
3 answers

Kotlin - Here Maps - Get address out of callback function

I am attempting to get the address out of the callback function. I have been reading the documentation for CallBacks and some posts but still don't get why this is not working, as at the moment of returning the 'address' variable the callback has…
Robin
  • 51
  • 5
0
votes
2 answers

Implementing own TileServerProvider

I am using HERE Maps SDK Lite Edition Version 4.7.3.0, which gives the possibility to ad a RasterLayer with an own TileServerProvider implementation (see documentation). I edited the given example by exchanging the SimpleTileServerProvider with my…
0
votes
1 answer

Here SDK mark position on map

I show the user's position on the map but what I want to do is mark the same In onCreate I get the position of the user: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
JAOdev
  • 301
  • 3
  • 11
0
votes
0 answers

Here Maps Premium SDK works on Android Auto?

HERE-maps premium sdk works with Android Auto sdk? I`m developing a feature just to mirror my maps in car but always get the same error: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.Context…
0
votes
1 answer

HERE Maps Custom server

Is it supported in any way to use HERE Maps APIs on client side without using the HERE maps services? Possibly by providing our own server and maps for the API to render on the Android device? If yes, could you tell me where can I find some sort of…
0
votes
1 answer

Current Location Indicator HERE SDK Lite Edition

Have anyone succeeded in adding a current location indicator for HERE SDK Lite version? In the Premium edition, there's a PositionIndicator class to handle that, but I haven't found such thing in HERE Lite Edition. Currently I have to manually added…
Bopmaster
  • 61
  • 6
0
votes
0 answers

CustomRoute on HERE SDK Android Premium Parsing problem

About one week ago I started to get a "Response parsing problem" to calculate Custom Route (for anywhere) using Android Premium SDK. I am using the same code for a while but recently this error appears. So, I cannot calculate a custom route for…
0
votes
1 answer

Lack of Navigation Edition Here SDK for android

So I was looking for the examples on GitHub here for navigation: https://github.com/heremaps/here-sdk-examples/tree/master/examples/latest/navigate/android/Navigation Yet it does not work because it expects 4.x navigation library for the project to…