<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地理定位所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)