我需要项目中的地址。我通过使用纬度和经度来获取地址,包括下面的脚本代码。
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script>
是否有任何相应的.js文件可以找到位置而不是加载上面的URL?
请提供一些建议,因为没有网络连接我的应用程序没有加载,它正在抛出应用程序错误。
答案 0 :(得分:0)
点击here查询您的查询。我认为这对你有用。
答案 1 :(得分:0)
为什么不使用函数()获取位置并在div中显示? 请查看以下内容:
function Location() {
var latlng = userLatValue + ',' + userLngValue;
var locationUrl = "https://maps.googleapis.com/maps/api/geocode/json?latlng="
+ latlng + "&sensor=false";
var locationRequest = $.ajax({
type : 'GET',
url : locationUrl,
async : false,
data : "json"
});
locationRequest.done(function(data) {
if(data.results.length > 0) {
userLocationName = data.results[0].formatted_address;
//alert('address: ' + userLocationName);
}
});
locationRequest.fail(function(jqXHR, textstatus, error) {
//alert("error:");});
}