convertScreenPointFromMapPoint3 method Null safety

Future<BMFPoint?> convertScreenPointFromMapPoint3(
  1. BMFCoordinate location,
  2. double height
)

将三维坐标转化为屏幕坐标 since 3.3.0

BMFCoordinate location 地理坐标

double height 高度

BMFPoint 屏幕坐标

Implementation

Future<BMFPoint?> convertScreenPointFromMapPoint3(
    BMFCoordinate location, double height) async {
  return await BMFMapDispatcherFactory.instance.projectionDispatcher
      .convertScreenPointFromMapPoint3(_mapChannel, location, height);
}