addCustomMarker abstract method

dynamic addCustomMarker({
  1. required LatLng point,
  2. required String title,
  3. MapMarkerIconModel? icon,
  4. required List<MapButtonClass> buttons,
  5. List<String>? images,
  6. List<MapMarkerContentModel>? content,
})

Create marker on point with title, in this marker you may configure a button and its callback on point with title buttons with names and callbacks acts

Implementation

addCustomMarker({
  required LatLng point,
  required String title,
  MapMarkerIconModel? icon,
  required List<MapButtonClass> buttons,
  List<String>? images,
  List<MapMarkerContentModel>? content
});