最新文章:
- 什么是静态服务器
- npx是什么东东,跟npm有啥关系?
- AMD宣布将在全球范围内裁员4%
- 处理Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.警告
- 什么是原子化CSS
您的位置:
富录-前端开发|web技术博客
>
JavaScript >
HTML5 Geolocation(地理定位)
HTML5 Geolocation(地理定位)
发布时间:2017年06月11日 评论数:抢沙发阅读数: 37000
运用getCurrentPosition() 方法来获得用户的位置。
HTML:
<div class="geolocation"></div>
js:
var geolocation = { getSite: function() { if(window.navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else { $(".geolocation").text("浏览器不支持地理定位!!!") } function showPosition(position) { // 经度 var longitude = position.coords.longitude; // 维度 var latitude = position.coords.latitude; $(".geolocation").text("纬度:" + latitude + "纬度:" + longitude) } }, start: function() { this.getSite() } } geolocation.start()
本文作者:DGF
文章标题:
HTML5 Geolocation(地理定位)
本文地址: https://arbays.com/post-21.html  本文已被百度收录!
版权声明:若无注明,本文皆为“富录-前端开发|web技术博客”原创,转载请保留文章出处。
本文地址: https://arbays.com/post-21.html  本文已被百度收录!
版权声明:若无注明,本文皆为“富录-前端开发|web技术博客”原创,转载请保留文章出处。
相关文章