谷歌IP地理位置API



有没有办法使用任何谷歌API实时获取我的用户的IP地理位置?

我认为它将使用分析数据库,这是唯一一个在城市级别跟踪我的用户实际上是正确的数据库(我可以测试的任何其他 IP 位置 API 显示我的 IP 地址距离我的真实位置近 200 公里。谷歌显示它200米(!)远!

我想知道我的用户的位置(在浏览器端并将其传输到我的服务器或服务器端)以提供与城市相关的内容。但是我不想让我的用户使用这些烦人的弹出窗口之一,要求使用 GPS,所以我想使用 IP 地址。

有什么建议吗?

如果您不想使用HTML5样式的客户端启用的GeoIP信息,您将需要一个GeoIP数据库,例如MaxMind的GeoIP Lite数据库,该数据库是免费的,适用于99%的用例。任何其他具有更准确/详细信息的服务都将花费您很多钱。MaxMind受到许多人的称赞,并且非常适合我个人的需求。它可以为您提供国家/地区/城市/纬度 - 经度 - 坐标/大陆信息。

您可以使用Google的地理位置API根据用户的IP地址获取纬度和纬度:

  var apiKey = "Your Google API Key";
  function findLatLonFromIP() {
    return new Promise((resolve, reject) => {
      $.ajax({
        url: `https://www.googleapis.com/geolocation/v1/geolocate?key=${apiKey}`,
        type: 'POST',
        data: JSON.stringify({considerIp: true}),
        contentType: 'application/json; charset=utf-8',
        dataType: 'json',
        success: (data) => {
          if (data && data.location) {
            resolve({lat: data.location.lat, lng: data.location.lng});
          } else {
            reject('No location object in geolocate API response.');
          }
        },
        error: (err) => {
          reject(err);
        },
      });
    });
  }

然后,您可以使用这些坐标通过地理编码 API 获取用户的地址。下面是返回国家/地区的示例:

  function getCountryCodeFromLatLng(lat, lng) {
    return new Promise((resolve, reject) => {
      $.ajax({
        url: `https://maps.googleapis.com/maps/api/geocode/json?latlng=${lat},${lng}&key=${apiKey}`,
        type: 'GET',
        data: JSON.stringify({considerIp: true}),
        dataType: 'json',
        success: (data) => {
          console.log('reverse geocode:', data.results[0].address_components);
          data.results.some((address) => {
            address.address_components.some((component) => {
              if (component.types.includes('country')) {
                return resolve(component.short_name);
              }
            });
          });
          reject('Country not found in location information.');
        },
        error: (err) => {
          reject(err);
        },
      });
    });
  }

上面,只需浏览data.results即可找到您需要的信息(城市,街道,国家等...同时使用上述两个函数:

findLatLonFromIP().then((latlng) => {
  return getCountryCodeFromLatLng(latlng.lat, latlng.lng);
}).then((countryCode) => {
  console.log('User's country Code:', countryCode);
});

您可以使用 Google 的地理编码 API 获取位置的真实地址,但该 API 所需的输入是纬度和经度坐标。

例:http://maps.googleapis.com/maps/api/geocode/json?latlng=43.473,-82.533&sensor=false

您需要从其他供应商处查找 IP 到位置 API 才能进入城市级别,或者保留提示他们授予您访问其地理位置的选项。

IPInfoDB在不使用输入的情况下通过IP自动缩小位置范围方面做得很好:

http://ipinfodb.com/ip_location_api.php

相关内容

  • 没有找到相关文章

最新更新