if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition, showErr);
}
function showPosition(position){
//alert(position.coords.latitude+','+position.coords.longitude);
// ak = appkey 访问次数流量有限制
$.getJSON('http://api.map.baidu.com/geocoder/v2/?ak=71709218d45a706b9c7e3abc2f037b23&callback=?&location='+position.coords.latitude+','+position.coords.longitude+'&output=json&pois=1', function(res){
//addressComponent => {city: "广州市", district: "天河区", province: "广东省", street: "广州大道", street_number: "中922号-之101-128"}
$("#location").html(res.result.addressComponent.city);
});
}
function show(msg){
alert(msg)
}
function showErr(error){
var result;
switch(error.code)
{
case error.PERMISSION_DENIED:
result="User denied the request for Geolocation."
break;
case error.POSITION_UNAVAILABLE:
result="Location information is unavailable."
break;
case error.TIMEOUT:
result="The request to get user location timed out."
break;
case error.UNKNOWN_ERROR:
result="An unknown error occurred."
break;
}
alert(result);
}
如果是自己写的话,简单方法肯定没有,一般都是经纬度然后你自己判断的,你想想,浏览器怎么可能会被你存上中国各省各市的地名呢..反正我觉得不大可能。如果你正好调用了百度地图,可以看看下面这个API。
http://developer.baidu.com/map/jsdemo.htm#i8_2
一般一个地区会固定使用某一IP地址段,因此可以通过判断用户的IP地址来确定用户所在的城市。而你可以使用一些第三方的IP数据库。
大部分网站应该都是通过服务端获取用户的 ip, 然后从 ip 库中匹配城市,所以会经常看到一些网站有时匹配的不准确。
楼主说的通过 Geolocation 技术上是可行的,但是获取坐标会有以下一些问题:
更简单有效的方式是服务端程序获取用户的IP,匹配一个IP库的地址。JS无法获取IP。通过获取坐标的方法楼主自己也知道不太可行。为什么非得吊死在JS上面。
简单一点的,百度地图API貌似复杂了点
另外居于我写的居于geolocation例子