addCustomMarkerBase64 method

Future<void> addCustomMarkerBase64(
  1. String markerID,
  2. double latitude,
  3. double longitude,
  4. String img,
  5. int width,
  6. int height,
  7. String title,
  8. String description,
)

Implementation

Future<void> addCustomMarkerBase64(String markerID,double latitude,double longitude, String img,  int width, int height, String title, String description) async {
  var label = "$markerID:$title";
  return _channel.invokeMethod('addCustomMarkerBase64', {'latitude': latitude,'longitude':longitude , 'width': width, 'height':height, 'img' : img, 'title' : label, 'description' : description});
}