找到用户的最佳方式

时间:2010-12-12 09:54:38

标签: javascript asp.net web-services geolocation geoip

我该怎样做this或喜欢this

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

我想在网页中使用它

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

我的优先事项是: 服务应该是: 1.Free 2.Most Accurate

4 个答案:

答案 0 :(得分:2)

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

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

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

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

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

答案 1 :(得分:0)

我使用GeoIP Country Lite。他们每个月都会向数据库发布更新,并声称其准确率为99.5%。使用它是微不足道的,因为它们还提供库代码来查询数据库。

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

答案 2 :(得分:0)

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

答案 3 :(得分:0)

我测试它的效果非常好。

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 '';
    }
}