setMapController method
Implementation
Future<void> setMapController(apple_map.AppleMapController controller, {bool withUpdate = true}) async {
_mapController = controller;
_zoom = await controller.getZoomLevel() ?? 14.0;
if (withUpdate) updateMap();
}