getMaxZoom method
Gets the maximum supported zoom level.
Implementation
@override
Future<double> getMaxZoom() async {
try {
final double? max =
await _channel.invokeMethod<double>('getMaxZoom');
return max ?? 1.0;
} catch (_) {
return 1.0;
}
}