I'm using Mapbox Maps(v10.7.0) in my app, two things I want to achieve
Remove all markers (PointAnnotation)
Drag a marker and drop in another location
let pointAnnotationManager = mapView.annotations.makePointAnnotationManager() pointAnnotationManager?.annotations.removeAll()
Tried above code to remove marker, but it's not removing any... How to achieve this...