This repository has been archived by the owner on Sep 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 162
坐标转换
小山 edited this page Oct 19, 2020
·
1 revision
支持GPS/Mapbar/Baidu等多种类型坐标在高德地图上使用。参见类AmapService
。
使用方法
final result = await AmapService.instance.convertCoordinate(_coord, CoordType.GPS);
支持经纬度坐标与屏幕像素坐标互转。具体用法为:
final latLng = await controller.fromScreenLocation(screenPoint); // screenPoint为屏幕坐标,返回经纬度
final screenPoint = await controller.toScreenLocation(latLng); // latLng为经纬度坐标,返回屏幕坐标
- 创建工程
- 创建地图
- 与地图交互
- 在地图上绘制
- 获取地图数据
- 出行路线规划
- 地图计算工具
- 最佳实践
- 实用工具