enable3DMode method

  1. @Deprecated('This method was intended to set map type map 3D. It has been superseded by `MFMapView.mapType` property. This method is subject to removal in a future versions.')
Future<void> enable3DMode(
  1. bool isEnable
)

Implementation

@Deprecated(
    'This method was intended to set map type map 3D. It has been superseded by `MFMapView.mapType` property. This method is subject to removal in a future versions.')
Future<void> enable3DMode(bool isEnable) {
  return _channel.invokeMethod<bool>(
      'map#enable3DMode', <String, Object>{'enable3DMode': isEnable});
}