defaultMarker property

BitmapDescriptor? defaultMarker

Creates a BitmapDescriptor that refers to the default marker image.

Implementation

static BitmapDescriptor? get defaultMarker {
  if (Platform.isIOS) {
    return BitmapDescriptor._(appleMaps.BitmapDescriptor.defaultAnnotation);
  } else if (Platform.isAndroid) {
    return BitmapDescriptor._(googleMaps.BitmapDescriptor.defaultMarker);
  }
  return null;
}