getZoom method

Future<double> getZoom()
inherited

Implementation

Future<double> getZoom() async {
  return (await interop
          .getZoom(
            mapIdMixin.toJS,
          )
          .toDart)
      .toDartDouble;
}