html5Geolocation地理定位

html5Geolocation地理定位,第1张

概述&lthtml&gt&lthead&gt &lttitle&gtGeolocation API地理定位&lt/title&gt &ltscript type="text/javascript"&gt navigator.geolocation.getCurrentPostion(function(pos) { console.log("当

<HTML>
<head>
    <Title>Geolocation API地理定位</Title>
    <script type="text/JavaScript">
        navigator.geolocation.getCurrentPostion(function(pos) {
            console.log("当前地理位置的纬度:" + pos.coords.laitude);
            console.log("当前地理位置的经度:" + pos.coords.longitude);
            console.log("当前经纬度的经度:" + pos.coords.accuracy);
        });

        var watchID = navigator.geolocation.witchposition(function(pos) {
            console.log("当前位置变化的纬度:" + pos.coords.laitude);
            console.log("当前位置变化的经度:" + pos.coords.longitude);
            console.log("当前位置变化的经度:" + pos.coords.accuracy);

            navigator.geolocation.clearwatch(watchID);
        },function() { });
    </script>
</head>
<body>

</body>
</HTML>

总结

以上是内存溢出为你收集整理的html5Geolocation地理定位全部内容,希望文章能够帮你解决html5Geolocation地理定位所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1018930.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存