setCoordinateTypeUsedInBaiduMapSDK static method

Future<bool?> setCoordinateTypeUsedInBaiduMapSDK(
  1. BMK_COORD_TYPE? coorType
)

Implementation

static Future<bool?> setCoordinateTypeUsedInBaiduMapSDK(BMK_COORD_TYPE? coorType) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapManager::setCoordinateTypeUsedInBaiduMapSDK([])');
  }

  // invoke native method
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapManager::setCoordinateTypeUsedInBaiduMapSDK', {"coorType": coorType?.toValue()});


  // handle native call


  return __result__;
}