定位用户的最佳方式[关闭]

Posted

技术标签:

【中文标题】定位用户的最佳方式[关闭]【英文标题】:Best way of locating users [closed] 【发布时间】:2010-12-12 09:54:37 【问题描述】:

我该怎么做this 或喜欢this?

有没有免费的网络服务来检测用户的位置?

我想在网页中使用它

避免维护庞大的 IP 及其位置数据库!

我的优先事项是: 服务应该是: 1.免费 2.最准确

【问题讨论】:

【参考方案1】:

来自http://blog.programmableweb.com/2009/03/31/3-free-ways-to-geolocate-by-ip/我收到了

Hostip.info 是一个社区支持的 IP 映射数据库。它的 REST API 很容易集成到服务器端代码中,并有多种输出类型选项。查看我们的 hostip.info API 配置文件,您可以在其中查看已经使用此 API 的混搭。

MaxMind-Geo Lite 是一种不同类型的 API。它的免费版本不是调用 Web 服务,而是作为二进制文件分发。有用于访问 IP 数据的常用编程语言的开源库。

另见http://www.eggheadcafe.com/articles/20051109.asp

类似问题:https://***.com/questions/283016/know-a-good-ip-address-geolocation-service

【讨论】:

所有这些准确度如何?他们能在多深的地方找到城市郊区? Hostip.info 不起作用。例如检查这个:116.72.105.74【参考方案2】:

我使用GeoIP Country Lite。他们每个月都会发布数据库更新,并声称准确率为 99.5%。使用起来很简单,因为它们还提供库代码来查询数据库。

如果您需要比国家/地区更高的分辨率,MaxMind 还提供基于城市的查找。

【讨论】:

有没有免费的网络服务来检测用户的位置? MaxMind City 数据库在here 可用,他们声称在美国 25 英里半径内的准确度为 79%。 我正在使用来自fraudlabs.com 的 ip2location Web 服务。他们有免费帐户和许可证密钥【参考方案3】:

html5 Geolocation API 从不适用于浏览器(Safari、Chrome、Firefox),尽管它需要计算机上的某种定位服务。如果 HTML5 Geolocation 不可用,我会先使用它,然后通过 IP 回退到位置。示例代码:

if (navigator.geolocation) 
  navigator.geolocation.getCurrentPosition(function (pos) 
    console.log([pos.latitude, pos.longitude]);
  , function (err)  
    // Do something else, IP location based?
  );
 else 
  // Do something else, IP location based?

要查找用户的国家、城市甚至地址,您可以使用Google Maps Geocoding API

【讨论】:

Internet Explorer 7/8 和 Opera 的情况【参考方案4】:

就我的测试而言,这很有效。

从ipinfodb.org获取一个api密钥

var Geolocation = new geolocate(false, true);
Geolocation.checkcookie(function() 
    alert('Visitor latitude code : ' + Geolocation.getField('Latitude'));
    alert('Visitor Longitude code : ' + Geolocation.getField('Longitude'));
);

function geolocate(timezone, cityPrecision) 
    alert("Using IPInfoDB");
    var key = 'your api code';
    var api = (cityPrecision) ? "ip_query.php" : "ip_query_country.php";
    var domain = 'api.ipinfodb.com';
    var version = 'v2';
    var url = "http://" + domain + "/" + version + "/" + api + "?key=" + key + "&output=json" + ((timezone) ? "&timezone=true" : "&timezone=false" ) + "&callback=?";
    var geodata;
    var JSON = JSON || ;

    // implement JSON.stringify serialization
    JSON.stringify = JSON.stringify || function (obj) 
        var t = typeof (obj);
        if (t != "object" || obj === null) 
            // simple data type
            if (t == "string") obj = '"'+obj+'"';
            return String(obj);
         
        else 
            // recurse array or object
            var n, v, json = [], arr = (obj && obj.constructor == Array);
            for (n in obj) 
                v = obj[n]; t = typeof(v);
                if (t == "string") v = '"'+v+'"';
                else if (t == "object" && v !== null) v = JSON.stringify(v);
                json.push((arr ? "" : '"' + n + '":') + String(v));
            
            return (arr ? "[" : "") + String(json) + (arr ? "]" : "");
        
    ;

    // implement JSON.parse de-serialization
    JSON.parse = JSON.parse || function (str) 
        if (str === "") str = '""';
        eval("var p=" + str + ";");
        return p;
    ;

    // Check if cookie already exist. If not, query IPInfoDB
    this.checkcookie = function(callback) 
        geolocationCookie = getCookie('geolocation');
        if (!geolocationCookie) 
            getGeolocation(callback);
         
        else 
            geodata = JSON.parse(geolocationCookie);
            callback();
        
    

    // Return a geolocation field
    this.getField = function(field) 
        try 
            return geodata[field];
         catch(err) 
    

    // Request to IPInfoDB
    function getGeolocation(callback) 
        try 
            $.getJSON(url,
                    function(data)
                if (data['Status'] == 'OK') 
                    geodata = data;
                    JSONString = JSON.stringify(geodata);
                    setCookie('geolocation', JSONString, 365);
                    callback();
                
            );
         catch(err) 
    

    // Set the cookie
    function setCookie(c_name, value, expire) 
        var exdate=new Date();
        exdate.setDate(exdate.getDate()+expire);
        document.cookie = c_name+ "=" +escape(value) + ((expire==null) ? "" : ";expires="+exdate.toGMTString());
    

    // Get the cookie content
    function getCookie(c_name) 
        if (document.cookie.length > 0 ) 
            c_start=document.cookie.indexOf(c_name + "=");
            if (c_start != -1)
                c_start=c_start + c_name.length+1;
                c_end=document.cookie.indexOf(";",c_start);
                if (c_end == -1) 
                    c_end=document.cookie.length;
                
                return unescape(document.cookie.substring(c_start,c_end));
            
        
        return '';
    

【讨论】:

以上是关于定位用户的最佳方式[关闭]的主要内容,如果未能解决你的问题,请参考以下文章

Socket.IO 在两个用户之间发送消息的最佳方式? [关闭]

允许用户即时向其数据库添加列的最佳方式是啥? [关闭]

在 Web 应用程序中存储小型 UI 用户首选项的最佳方式? [关闭]

获得快速准确位置的最佳方式[关闭]

组织数据的最佳方式[关闭]

什么是实时 GPS 跟踪系统(核心定位、地理定位)的最佳客户端解决方案 [关闭]