IOS/Swift : HERE MAPS not clearing map markers on map (Explore edition)

399 Views Asked by At

I have used both the lite sdk and the explore sdk available for the swift ios, for integration with here maps. I haven't passed by any of the ways to clear map markers already set on a screen on the mapview. Kindly let me if any workaround is available.

1

There are 1 best solutions below

1
On

You can remove MapMarker items with the HERE SDK for iOS (Explore Edition) by calling:

mapView.mapScene.removeMapMarker(mapMarker)

Make sure that the mapMarker is the same instance you have added before, otherwise, the code will do nothing.

In case of doubt, try the MapItems example app on GitHub. In this line it shows how to remove all added markers.