showMarker method

Future<void> showMarker({
  1. required Coords coords,
  2. required String title,
  3. String? description,
  4. int? zoom,
  5. Map<String, String>? extraParams,
})

Launches current map and shows marker at coords

Implementation

Future<void> showMarker({
  required Coords coords,
  required String title,
  String? description,
  int? zoom,
  Map<String, String>? extraParams,
}) {
  return MapLauncher.showMarker(
    mapType: mapType,
    coords: coords,
    title: title,
    description: description,
    zoom: zoom,
    extraParams: extraParams,
  );
}