getMaxZoomAtLatLng method

Future<MaxZoomResult> getMaxZoomAtLatLng(
  1. LatLng? latlng, [
  2. void callback(
    1. MaxZoomResult?
    )?
])

Implementation

Future<MaxZoomResult> getMaxZoomAtLatLng(
  LatLng? latlng, [
  void Function(MaxZoomResult?)? callback,
]) =>
    promiseToFuture(callMethod(this, 'getMaxZoomAtLatLng',
        [latlng, callback == null ? null : allowInterop(callback)]));