gpt4 book ai didi

android - 如何使用 Ionic 检索纬度和经度?

转载 作者:行者123 更新时间:2023-11-29 17:16:16 25 4
gpt4 key购买 nike

如何使用 Ionic Framework 获取纬度/经度。在 Android 中,它有时会按预期提供它,有时它不会使用以下内容提供纬度/经度:

navigator.geolocation.getCurrentPosition(onSuccess, onError, options);  

最佳答案

您可以调用返回 JSON 对象的 URL API,然后获取纬度和经度。以下示例调用 http://freegeoip.net/json/并打印出结果。要访问纬度和经度,您可以使用 result.latituderesult.longitude 字段。

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$.getJSON("http://freegeoip.net/json/", function(result){
$.each(result, function(i, field){
$("div").append(field + " ");
});
});
});
});
</script>
</head>
<body>

<button>Get JSON data</button>

<div></div>

</body>
</html>

关于android - 如何使用 Ionic 检索纬度和经度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38759854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com