I have added a marker in HERE map like below code.
hereMap.addMapObject(new MapMarker(new GeoCoordinate(lat, longi),setMapMarkerImage(R.drawable.zeroo)));
And with below code MapCircle
not added in HERE map
MapCircle currentHereMapCircle = null;
currentHereMapCircle = new MapCircle(50.67,mm);
currentHereMapCircle.setRadius(50.67);
currentHereMapCircle.setFillColor(Color.CYAN);
currentHereMapCircle.setLineWidth(2);
currentHereMapCircle.setLineColor(Color.BLUE);
hereMap.addMapObject(currentHereMapCircle);`
The app crashes when I add this code, any ideas why?
This is a sample code that adds a MapCircle to a map:
Check the full implementation at: https://github.com/heremaps/here-android-sdk-examples/tree/master/map-objects