changeLocationMarker method
Future<void>
changeLocationMarker({
- required GeoPoint oldLocation,
- required GeoPoint newLocation,
- MarkerIcon? markerIcon,
- double? angle,
- IconAnchor? iconAnchor,
Implementation
Future<void> changeLocationMarker({
required GeoPoint oldLocation,
required GeoPoint newLocation,
MarkerIcon? markerIcon,
double? angle,
IconAnchor? iconAnchor,
}) async {
await osmBaseController.changeMarker(
oldLocation: oldLocation,
newLocation: newLocation,
newMarkerIcon: markerIcon,
angle: angle,
iconAnchor: iconAnchor,
);
}