removeMarkerByLatlong method
void
removeMarkerByLatlong(
- LatLng _location
Remove marker by latlong
Implementation
void removeMarkerByLatlong(LatLng _location) {
_markers.removeWhere((_marker) => _marker.position == _location);
notifyListeners();
}