ジオロケーションを使用して都市名を取得する


140

HTMLベースの地理位置情報を使用して、ユーザーの緯度と経度を取得することができました。

//Check if browser supports W3C Geolocation API
if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(successFunction, errorFunction);
} 
//Get latitude and longitude;
function successFunction(position) {
    var lat = position.coords.latitude;
    var long = position.coords.longitude;
}

都市名を表示したいのですが、逆ジオロケーションAPIを使用するのが唯一の方法のようです。リバースジオロケーションに関するGoogleのドキュメントを読みましたが、自分のサイトで出力を取得する方法がわかりません。

これを使用する方法がわかりません"http://maps.googleapis.com/maps/api/geocode/json?latlng='+lat+','+long+'&sensor=true"。ページに都市名を表示します。

どうすればこれを達成できますか?


4
マップを使用しない場合は、これがGoogleのTOSに反することを知っていますか?ここ10.4のポイントdeveloper.google.com/maps/terms Googleマップがなければコンテンツを使用できません。Maps APIドキュメントで明示的に許可しない限り、対応するGoogleマップがなければ、Maps API実装でコンテンツを使用することはできません。たとえば、Maps APIドキュメントで明示的に許可されているため、対応するGoogleマップなしでストリートビュー画像を表示できます。
PirateApp 2016

5
はい、@ PirateAppには良い点があります。世の中にはもっと良いサービスがあるかもしれません。私は以前にSmartyStreetsを使用したことがあり、利用規約がはるかにオープンであることを知っています。ただし、ほとんどのサービスは逆ジオコーディングを行いません。Texas A&Mには無料のサービスがあることは知っていますが、他の人のデータを収集できないというTOS警告があり、以前は稼働時間と精度の問題がありました。
ジョセフハンセン

回答:


201

あなたはGoogle APIを使用してそのようなことをするでしょう。

これを機能させるには、Googleマップライブラリを含める必要があります。Googleジオコーダーは多くの住所コンポーネントを返すので、どちらが都市になるかについて、知識に基づいた推測を行う必要があります。

「administrative_area_level_1」は通常、探しているものですが、場合によっては、地域が目的の都市になることもあります。

とにかく-グーグルの応答タイプの詳細はここここにあります

以下は、トリックを実行するコードです。

<!DOCTYPE html> 
<html> 
<head> 
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/> 
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/> 
<title>Reverse Geocoding</title> 

<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> 
<script type="text/javascript"> 
  var geocoder;

  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(successFunction, errorFunction);
} 
//Get the latitude and the longitude;
function successFunction(position) {
    var lat = position.coords.latitude;
    var lng = position.coords.longitude;
    codeLatLng(lat, lng)
}

function errorFunction(){
    alert("Geocoder failed");
}

  function initialize() {
    geocoder = new google.maps.Geocoder();



  }

  function codeLatLng(lat, lng) {

    var latlng = new google.maps.LatLng(lat, lng);
    geocoder.geocode({'latLng': latlng}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
      console.log(results)
        if (results[1]) {
         //formatted address
         alert(results[0].formatted_address)
        //find country name
             for (var i=0; i<results[0].address_components.length; i++) {
            for (var b=0;b<results[0].address_components[i].types.length;b++) {

            //there are different types that might hold a city admin_area_lvl_1 usually does in come cases looking for sublocality type will be more appropriate
                if (results[0].address_components[i].types[b] == "administrative_area_level_1") {
                    //this is the object you are looking for
                    city= results[0].address_components[i];
                    break;
                }
            }
        }
        //city data
        alert(city.short_name + " " + city.long_name)


        } else {
          alert("No results found");
        }
      } else {
        alert("Geocoder failed due to: " + status);
      }
    });
  }
</script> 
</head> 
<body onload="initialize()"> 

</body> 
</html> 

3
管理エリアレベル1には当てはまりません。都市名が表示されない場合もあります。-{"long_name" => "サンフランシスコ"、 "types" => ["administrative_area_level_2"、 "political"]、 "short_name" => "サンフランシスコ"}、{"long_name" => "カリフォルニア"、 "タイプ"=> [" administrative_area_level_1 "、" political "]、" short_name "=>" CA "}、{" long_name "=>" United States "、" types "=> [" country "、" political "]、" short_name "=>" US "}
Ming Tsai

5
V3の場合、{'latlng':latlng}文字列は... geocode({'location':latlng})のように 'location'に変更する必要があります。この例ではほとんど問題はありませんでしたが、 'latlng'文字列は新しいAPIでは有効ではなくなったようです。詳細については、developers.google.com / maps / documentation / javascript / をご覧ください。
バイナリジャイアント

@Michal完全な住所ではなく国名または国コードのみを検索するにはどうすればよいですか?
ajay

1
「国」のifステートメントテストの@ajayと都市変数が国のデータを返すようになりました。名前をcountry = results [0] .address_components [i]に変更すると、country.long_nameおよびcountry.short_nameでデータにアクセスできます
Michal

これをある州内の都市に絞り込む方法、または場所が特定の州からのものであるかどうかを確認し、ユーザーが特定のWebページにリダイレクトされるかどうかを確認する方法はありますか?
申し訳ありませんが2016

52

これに対する別のアプローチは、ユーザーの現在のIPアドレスに基づいて都市、地域、国の名前を返すhttp://ipinfo.ioサービスを使用することです。以下に簡単な例を示します。

$.get("http://ipinfo.io", function(response) {
    console.log(response.city, response.country);
}, "jsonp");

:ここでは、利用可能な詳細の全て見ることができるようにも、完全な応答情報を出力し、より詳細なJSFiddle例だhttp://jsfiddle.net/zK5FN/2/は、


23
正確ではありませんが。
Salman von Abbas

4
大きなロシアのプロバイダーのIPから都市とtrgionさえ検出できませんでした:(
Jehy 2014

2
笑...これは私の内部ネットワークIP(192.168 ...)を与えます
メジャーマン'07 / 07/11

デバイス(ハンドヘルド)ブラウザーから実行できますか?
Arti

信頼できないようです。現在、ラップトップと携帯電話を使用しています。ipinfo.ioを通じて両方のデバイスに表示される都市は、530キロ離れています。
Ashish Goyal

52

$.ajax({
  url: "https://geolocation-db.com/jsonp",
  jsonpCallback: "callback",
  dataType: "jsonp",
  success: function(location) {
    $('#country').html(location.country_name);
    $('#state').html(location.state);
    $('#city').html(location.city);
    $('#latitude').html(location.latitude);
    $('#longitude').html(location.longitude);
    $('#ip').html(location.IPv4);
  }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>

<div>Country: <span id="country"></span></div>
  <div>State: <span id="state"></span></div>
    <div>City: <span id="city"></span></div>
      <div>Latitude: <span id="latitude"></span></div>
        <div>Longitude: <span id="longitude"></span></div>
          <div>IP: <span id="ip"></span></div>

html5ジオロケーションを使用するには、ユーザーの許可が必要です。これが必要ない場合は、https: //geolocation-db.comなどの外部ロケーターを使用してください。IPv6がサポートされています。制限や無制限のリクエストは許可されていません。

jQueryを使用しない純粋なJavaScriptの例については、この回答を確認してください。


17

Google Maps Geocoding APIを使用して、都市、国、通りの名前、その他の地理データの名前を取得できます

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript" src="https://code.jquery.com/jquery-2.2.3.js"></script>
</head>
<body>
    <script type="text/javascript">
        navigator.geolocation.getCurrentPosition(success, error);

        function success(position) {
            console.log(position.coords.latitude)
            console.log(position.coords.longitude)

            var GEOCODING = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' + position.coords.latitude + '%2C' + position.coords.longitude + '&language=en';

            $.getJSON(GEOCODING).done(function(location) {
                console.log(location)
            })

        }

        function error(err) {
            console.log(err)
        }
    </script>
</body>
</html>

jQueryを使用してこのデータをページに表示する

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript" src="https://code.jquery.com/jquery-2.2.3.js"></script>
</head>
<body>

    <p>Country: <span id="country"></span></p>
    <p>State: <span id="state"></span></p>
    <p>City: <span id="city"></span></p>
    <p>Address: <span id="address"></span></p>

    <p>Latitude: <span id="latitude"></span></p>
    <p>Longitude: <span id="longitude"></span></p>

    <script type="text/javascript">
        navigator.geolocation.getCurrentPosition(success, error);

        function success(position) {

            var GEOCODING = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' + position.coords.latitude + '%2C' + position.coords.longitude + '&language=en';

            $.getJSON(GEOCODING).done(function(location) {
                $('#country').html(location.results[0].address_components[5].long_name);
                $('#state').html(location.results[0].address_components[4].long_name);
                $('#city').html(location.results[0].address_components[2].long_name);
                $('#address').html(location.results[0].formatted_address);
                $('#latitude').html(position.coords.latitude);
                $('#longitude').html(position.coords.longitude);
            })

        }

        function error(err) {
            console.log(err)
        }
    </script>
</body>
</html>

15

これは、City / Townを取得する更新された作業バージョンです。json応答で一部のフィールドが変更されているようです。この質問に対する以前の回答を参照します。(Michalともう1つのリファレンスのおかげで:リンク

var geocoder;

if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(successFunction, errorFunction);
}
// Get the latitude and the longitude;
function successFunction(position) {
  var lat = position.coords.latitude;
  var lng = position.coords.longitude;
  codeLatLng(lat, lng);
}

function errorFunction() {
  alert("Geocoder failed");
}

function initialize() {
  geocoder = new google.maps.Geocoder();

}

function codeLatLng(lat, lng) {
  var latlng = new google.maps.LatLng(lat, lng);
  geocoder.geocode({latLng: latlng}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      if (results[1]) {
        var arrAddress = results;
        console.log(results);
        $.each(arrAddress, function(i, address_component) {
          if (address_component.types[0] == "locality") {
            console.log("City: " + address_component.address_components[0].long_name);
            itemLocality = address_component.address_components[0].long_name;
          }
        });
      } else {
        alert("No results found");
      }
    } else {
      alert("Geocoder failed due to: " + status);
    }
  });
}

10

geolocator.jsはそれを行うことができます。(私は著者です)。

都市名を取得する(制限付き住所)

geolocator.locateByIP(options, function (err, location) {
    console.log(location.address.city);
});

完全な住所情報の取得

以下の例では、正確な座標を取得するために最初にHTML5 Geolocation APIを試します。失敗または拒否された場合、Geo-IPルックアップにフォールバックします。座標を取得すると、座標をアドレスに逆ジオコーディングします。

var options = {
    enableHighAccuracy: true,
    fallbackToIP: true, // fallback to IP if Geolocation fails or rejected
    addressLookup: true
};
geolocator.locate(options, function (err, location) {
    console.log(location.address.city);
});

これは内部的に(アドレス検索のために)Google APIを使用します。したがって、この呼び出しの前に、Google APIキーでgeolocatorを構成する必要があります。

geolocator.config({
    language: "en",
    google: {
        version: "3",
        key: "YOUR-GOOGLE-API-KEY"
    }
});

Geolocatorは、ジオロケーション(HTML5またはIPルックアップを介して)、ジオコーディング、住所検索(逆ジオコーディング)、距離と所要時間、タイムゾーン情報、その他の多くの機能をサポートしています...


6

いくつかの異なるソリューションを自分のものと一緒にいくつか検索してつなぎ合わせた後、私はこの機能を思いつきました:

function parse_place(place)
{
    var location = [];

    for (var ac = 0; ac < place.address_components.length; ac++)
    {
        var component = place.address_components[ac];

        switch(component.types[0])
        {
            case 'locality':
                location['city'] = component.long_name;
                break;
            case 'administrative_area_level_1':
                location['state'] = component.long_name;
                break;
            case 'country':
                location['country'] = component.long_name;
                break;
        }
    };

    return location;
}

3

https://ip-api.io/を使用できますをして都市名を取得。IPv6に対応しています。

おまけとして、IPアドレスがTorノード、パブリックプロキシ、スパマーのいずれであるかを確認できます。

JavaScriptコード:

$(document).ready(function () {
        $('#btnGetIpDetail').click(function () {
            if ($('#txtIP').val() == '') {
                alert('IP address is reqired');
                return false;
            }
            $.getJSON("http://ip-api.io/json/" + $('#txtIP').val(),
                 function (result) {
                     alert('City Name: ' + result.city)
                     console.log(result);
                 });
        });
    });

HTMLコード

<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<div>
    <input type="text" id="txtIP" />
    <button id="btnGetIpDetail">Get Location of IP</button>
</div>

JSON出力

{
    "ip": "64.30.228.118",
    "country_code": "US",
    "country_name": "United States",
    "region_code": "FL",
    "region_name": "Florida",
    "city": "Fort Lauderdale",
    "zip_code": "33309",
    "time_zone": "America/New_York",
    "latitude": 26.1882,
    "longitude": -80.1711,
    "metro_code": 528,
    "suspicious_factors": {
        "is_proxy": false,
        "is_tor_node": false,
        "is_spam": false,
        "is_suspicious": false
    }
}

2

@PirateAppがコメントで述べたように、意図したとおりにMaps APIを使用することは、GoogleのMaps APIライセンスに明示的に違反します。

Geoipデータベースをダウンロードしてローカルでクエリを実行する方法や、my service ipdata.coなどのサードパーティのAPIサービスを使用する方法など、いくつかの選択肢があります。

ipdataは、任意のIPv4またはIPv6アドレスからの地理位置情報、組織、通貨、タイムゾーン、呼び出しコード、フラグ、Tor出口ノードのステータスデータを提供します。

また、1秒あたり10,000を超えるリクエストを処理できる10のグローバルエンドポイントでスケーラブルです。

この回答では、非常に制限された、いくつかの呼び出しのテストのみを目的とした「テスト」APIキーを使用しています。独自の無料APIキーにサインアップし、開発のために毎日最大1500のリクエストを取得します。

$.get("https://api.ipdata.co?api-key=test", function(response) {
  $("#ip").html("IP: " + response.ip);
  $("#city").html(response.city + ", " + response.region);
  $("#response").html(JSON.stringify(response, null, 4));
}, "jsonp");
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h1><a href="https://ipdata.co">ipdata.co</a> - IP geolocation API</h1>

<div id="ip"></div>
<div id="city"></div>
<pre id="response"></pre>

バイオリン; https://jsfiddle.net/ipdata/6wtf0q4g/922/


1

ここでもう1つ説明します..受け入れられた回答にさらに多くを追加すると、おそらくより包括的になります。もちろん、switch-caseはエレガントに見えます。

function parseGeoLocationResults(result) {
    const parsedResult = {}
    const {address_components} = result;

    for (var i = 0; i < address_components.length; i++) {
        for (var b = 0; b < address_components[i].types.length; b++) {
            if (address_components[i].types[b] == "street_number") {
                //this is the object you are looking for
                parsedResult.street_number = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "route") {
                //this is the object you are looking for
                parsedResult.street_name = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "sublocality_level_1") {
                //this is the object you are looking for
                parsedResult.sublocality_level_1 = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "sublocality_level_2") {
                //this is the object you are looking for
                parsedResult.sublocality_level_2 = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "sublocality_level_3") {
                //this is the object you are looking for
                parsedResult.sublocality_level_3 = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "neighborhood") {
                //this is the object you are looking for
                parsedResult.neighborhood = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "locality") {
                //this is the object you are looking for
                parsedResult.city = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "administrative_area_level_1") {
                //this is the object you are looking for
                parsedResult.state = address_components[i].long_name;
                break;
            }

            else if (address_components[i].types[b] == "postal_code") {
                //this is the object you are looking for
                parsedResult.zip = address_components[i].long_name;
                break;
            }
            else if (address_components[i].types[b] == "country") {
                //this is the object you are looking for
                parsedResult.country = address_components[i].long_name;
                break;
            }
        }
    }
    return parsedResult;
}

0

これを取得するために使用できる簡単な関数を次に示します。APIリクエストを作成するためにaxiosを使用しましたが、他の何でも使用できます。

async function getCountry(lat, long) {
  const { data: { results } } = await axios.get(`https://maps.googleapis.com/maps/api/geocode/json?latlng=${lat},${long}&key=${GOOGLE_API_KEY}`);
  const { address_components } = results[0];

  for (let i = 0; i < address_components.length; i++) {
    const { types, long_name } = address_components[i];

    if (types.indexOf("country") !== -1) return long_name;
  }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.