configureZoomMap method
Implementation
Future<void> configureZoomMap(
double minZoomLevel,
double maxZoomLevel,
double stepZoom,
double initZoom,
) async {
await interop
.configZoom(
mapIdMixin.toJS,
stepZoom.toJS,
initZoom.toJS,
minZoomLevel.toJS,
maxZoomLevel.toJS,
)
.toDart;
}