setMapId method
Set Google Map Id for the cluster manager
Implementation
Future<void> setMapId(int mapId, {bool withUpdate = true}) async {
_mapId = mapId;
_zoom = await GoogleMapsFlutterPlatform.instance.getZoomLevel(mapId: mapId);
if (withUpdate) updateMap();
}