html网页定位

网页地理定位有两种:
1.对于拥有 GPS 的设备,比如 iPhone,HTML5 Geolocation API 可以获得用户的地理位置,Internet Explorer 9、Firefox、Chrome、Safari 以及 Opera 支持地理定位。。
2.对于未拥有GPS的设备,比如PC,就可以使用IP定位。

第一种:对于拥有 GPS 的设备

<script>
var x=document.getElementById("demo");
function getLocation()
  {
  if (navigator.geolocation)
    {
    navigator.geolocation.getCurrentPosition(showPosition);
    }
  else{x.innerHTML="Geolocation is not supported by this browser.";}
  }
function showPosition(position)
  {
  alert("Latitude: " + position.coords.latitude +
  "<br />Longitude: " + position.coords.longitude);
  }
</script>

第二种:对于未拥有 GPS 的设备
1.引用新浪IP地址库

2.返回如下JSON字符串,remote_ip为默认变量,可以直接使用
var remote_ip_info = {“ret”:1,”start”:-1,”end”:-1,”country”:”\u4e2d\u56fd”,”province”:”\u6d59\u6c5f”,”city”:”\u676d\u5dde”,”district”:”“,”isp”:”“,”type”:”“,”desc”:”“};

3.可以通过如下获取城市名
var mycity = remote_ip_info[‘city’]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值