ip到位置脚本不准确

时间:2015-10-03 18:40:41

标签: javascript php ip

我需要让用户的位置尽可能准确,因为我正在使用此代码

<script>
$.get("http://ipinfo.io/json", function(response) {
    $("#ip").html("IP: " + response.ip);
    $("#address").html(response.city + ", " + response.region);
    $("#details").html(JSON.stringify(response, null, 4));
}, "jsonp");
</script>

但问题是它不准确它告诉我的IP好像我在Madhya Pradesh,但我在德里的其他地方,我试过它是对的,但我想当这个脚本无法跟踪位置它给了什么......

我不知道问题是什么,它可能是ISP的位置而不是用户位置

我想要谷歌给出的最准确的用户位置是可以的,请帮助

基本上这段代码给了我ISP的位置而不是我想要用户所在位置的用户而不是他们的ISP

0 个答案:

没有答案