centerTo
Future<void> centerTo ({required Map<String, dynamic> center, required double zoom})
Center the map on the given position and set the zoom.
Implementation
Future<void> centerTo(
{required Map<String, dynamic> center, required double zoom}) async {
await _channel.invokeMethod('centerTo', {"center": center, "zoom": zoom});
}