码迷,mamicode.com
首页 > Web开发 > 详细

html5Geolocation地理定位

时间:2015-01-02 09:44:08      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:html5geolocation地理定位   html5   geolocation   html5自定义开发   

<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地理定位   html5   geolocation   html5自定义开发   

原文地址:http://blog.csdn.net/y_f123/article/details/42339517

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!