removeMarker method

Future<void> removeMarker(
  1. GeoPoint position
)

removeMarker

remove marker from map of position

position : marker position that we want to remove from the map

Implementation

Future<void> removeMarker(GeoPoint position) async {
  osmBaseController.removeMarker(position);
}