All Projects → taoweiji → Jzlocationconverter For Android

taoweiji / Jzlocationconverter For Android

WGS-84世界标准坐标、GCJ-02中国国测局(火星坐标)、BD-09百度坐标系转换

Programming Languages

java
68154 projects - #9 most used programming language

JZLocationConverter-for-Android

java 或者 android版本的JZLocationConverter,IOS版本请看https://github.com/JackZhouCn/JZLocationConverter

世界标准地理坐标(WGS-84) 转换成 中国国测局地理坐标(GCJ-02)<火星坐标>

只在中国大陆的范围的坐标有效,以外直接返回世界标准坐标

public static LatLng wgs84ToGcj02(LatLng location);

中国国测局地理坐标(GCJ-02) 转换成 世界标准地理坐标(WGS-84)

(此接口有1-2米左右的误差,需要精确定位情景慎用)

public static LatLng gcj02ToWgs84(LatLng location);

世界标准地理坐标(WGS-84) 转换成 百度地理坐标(BD-09)

public static LatLng wgs84ToBd09(LatLng location);

中国国测局地理坐标(GCJ-02)<火星坐标> 转换成 百度地理坐标(BD-09)

public static LatLng gcj02ToBd09(LatLng location) ;

百度地理坐标(BD-09) 转换成 中国国测局地理坐标(GCJ-02)<火星坐标>

public static LatLng bd09ToGcj02(LatLng location);

百度地理坐标(BD-09) 转换成 世界标准地理坐标(WGS-84)

此接口有1-2米左右的误差,需要精确定位情景慎用

public static LatLng bd09ToWgs84(LatLng location);

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].