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