坐标转换 最后更新时间: 2021年01月22日
1、其他坐标系转到高德坐标系
支持GPS/Mapbar/Baidu等多种类型坐标在高德地图上使用。参见类CoordinateConverter。
CoordinateConverter converter = new CoordinateConverter();
// CoordType.GPS 待转换坐标类型
converter.from(CoordType.GPS);
// sourceLatLng待转换坐标点 LatLng类型
converter.coord(sourceLatLng);
// 执行转换操作
LatLng desLatLng = converter.convert();
2、经纬度坐标与屏幕像素坐标互转
支持经纬度坐标与屏幕像素坐标互转。具体用法为:
用法列表
名称 | 说明 |
---|---|
AMap.getProjection().fromScreenLocation(android.graphics.Point paramPoint) | 根据转入的屏幕位置返回一个地图位置(经纬度) |
AMap.getProjection().toScreenLocation(LatLng paramLatLng) | 返回一个从地图位置转换来的屏幕位置 |
AMap.getProjection().toOpenGLWidth(int screenWidth) | 返回一个屏幕宽度转换来的openGL 需要的宽度 |
AMap.getProjection().toOpenGLLocation(LatLng paramLatLng) | 返回一个从经纬度坐标转换来的opengles 需要的坐标 |