BMKConvertToBD09LLFromBaiduMercator function

Future<CLLocationCoordinate2D?> BMKConvertToBD09LLFromBaiduMercator(
  1. CGPoint bdMCTCoordinate
)

Implementation

Future<CLLocationCoordinate2D?> BMKConvertToBD09LLFromBaiduMercator(CGPoint bdMCTCoordinate) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKConvertToBD09LLFromBaiduMercator::BMKConvertToBD09LLFromBaiduMercator([])');
  }

  // invoke native method
  final __result__ = await kBmapUtilsFluttifyChannel.invokeMethod('BMKConvertToBD09LLFromBaiduMercator::BMKConvertToBD09LLFromBaiduMercator', {"bdMCTCoordinate": bdMCTCoordinate});


  // handle native call


  return BmapUtilsFluttifyIOSAs<CLLocationCoordinate2D>(__result__);
}