我使用intel XDK创建了一个应用程序,用于确定地图上的当前位置。但是,我找不到任何关于如何将纬度和经度转换为地址的文档或教程。有没有人有任何有用的链接或guidancce?
由于
答案 0 :(得分:4)
英特尔XDK没有用于将lat / lng转换为地址的API,还有其他反向地理编码服务,您可以使用谷歌地图反向地理编码将纬度/经度转换为地址,更多信息here,例如:
包含google maps api脚本:
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
这里是反向地理编码方法:
function reverseGeocode(lat, lng){
var latlng = new google.maps.LatLng(lat, lng);
var geocoder = new google.maps.Geocoder();
geocoder.geocode({'latLng': latlng}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[1]) {
alert(results[1].formatted_address);
} else {
alert('No results found');
}
} else {
alert('Geocoder failed due to: ' + status);
}
});
}
您可以通过运行reverseGeocode(45, -122)