showMarker method
Opens the map application specified by mapType
and displays a marker at coords
.
mapType
: The map application to launch.coords
: Coordinates where the marker should be placed.title
: Title for the marker.description
: Optional description for the marker.zoom
: Optional zoom level (default is 16).extraParams
: Extra map-specific query parameters.
Implementation
Future<dynamic> showMarker({
required MapType mapType,
required Coords coords,
required String title,
String? description,
int zoom = 16,
Map<String, String>? extraParams,
}) async {
throw UnimplementedError('showMarker() has not been implemented.');
}