public final class Projection
extends java.lang.Object
限定符和类型 | 方法和说明 |
---|---|
LatLng |
fromScreenLocation(Point point)
将屏幕坐标转换成地理坐标
|
float |
metersToEquatorPixels(float meters)
该方法把以米为计量单位的距离(沿赤道)在当前缩放水平下转换到一个以像素(水平)为计量单位的距离。
|
PointF |
toOpenGLLocation(LatLng location,
MapStatus mapStatus)
将地理坐标转换成openGL坐标,在 OnMapDrawFrameCallback 的 onMapDrawFrame 函数中使用。
|
PointF |
toOpenGLNormalization(LatLng location,
MapStatus mapStatus)
将地理坐标转换成归一化的openGL坐标,在 OnMapDrawFrameCallback 的 onMapDrawFrame 函数中使用。
|
Point |
toScreenLocation(LatLng location)
将地理坐标转换成屏幕坐标
|
public LatLng fromScreenLocation(Point point)
point
- 屏幕坐标 如果传入null 则返回nullpublic Point toScreenLocation(LatLng location)
location
- 地理坐标 如果传入 null 则返回nullpublic PointF toOpenGLLocation(LatLng location, MapStatus mapStatus)
location
- 地理坐标 如果传入 null 则返回nullmapStatus
- 地图每一帧绘制时的地图状态public PointF toOpenGLNormalization(LatLng location, MapStatus mapStatus)
location
- 地理坐标 如果传入 null 则返回nullmapStatus
- 地图每一帧绘制时的地图状态public float metersToEquatorPixels(float meters)
meters
- 以米为单位的距离