convertScreenPointFromMapPoint3 method Null safety
- BMFCoordinate location,
- 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);
}