緯度と経度のポイントから都市名を取得するにはどうすればよいですか?


回答:


118

これは逆ジオコーディングと呼ばれます


驚くばかり!私はこれを読みました、そして今、あまりにも多くのクエリの克服;)ありがとう。
デニス・マルティネス

javascript APIを使用している場合、IPアドレスごととシングルユーザーごとは同じですが、たとえばPHPを使用していて、これらの制限に達すると思われる場合は、リクエストを1秒あたり1つに制限するか、プロキシサーバーですが、プロキシには注意してください。グーグルは愚かではなく、ハンマーで叩くことはできません。詳細:developers.google.com/maps/documentation/business/articles/...
アンディ・ジー

26

完全なサンプルは次のとおりです。

<!DOCTYPE html>
<html>
  <head>
    <title>Geolocation API with Google Maps API</title>
    <meta charset="UTF-8" />
  </head>
  <body>
    <script>
      function displayLocation(latitude,longitude){
        var request = new XMLHttpRequest();

        var method = 'GET';
        var url = 'http://maps.googleapis.com/maps/api/geocode/json?latlng='+latitude+','+longitude+'&sensor=true';
        var async = true;

        request.open(method, url, async);
        request.onreadystatechange = function(){
          if(request.readyState == 4 && request.status == 200){
            var data = JSON.parse(request.responseText);
            var address = data.results[0];
            document.write(address.formatted_address);
          }
        };
        request.send();
      };

      var successCallback = function(position){
        var x = position.coords.latitude;
        var y = position.coords.longitude;
        displayLocation(x,y);
      };

      var errorCallback = function(error){
        var errorMessage = 'Unknown error';
        switch(error.code) {
          case 1:
            errorMessage = 'Permission denied';
            break;
          case 2:
            errorMessage = 'Position unavailable';
            break;
          case 3:
            errorMessage = 'Timeout';
            break;
        }
        document.write(errorMessage);
      };

      var options = {
        enableHighAccuracy: true,
        timeout: 1000,
        maximumAge: 0
      };

      navigator.geolocation.getCurrentPosition(successCallback,errorCallback,options);
    </script>
  </body>
</html>

ユーザーの承認なしに緯度と経度からユーザーの場所を見つける方法はありますか?
Vikas Verma 2014

8
@VikasVermaは、ユーザーの同意なしにユーザーの場所を見つけることが許可された場合、重大なプライバシー侵害になります
omerio 2014

@omerioに感謝しますが、そこでコードを作成しました。続行する場合は、ユーザーに[許可]をクリックするように強制しました。
Vikas Verma 2014

1
これは実際に私の正確な自宅の住所を教えてくれました。まさに私が欲しいもの。都市や州、郵便番号と同じように抽出するにはどうすればよいですか?
ydobonebi 2015年

6

node.jsでは、node-geocoder npmモジュールを使用して、lat、lng。、からアドレスを取得できます。

geo.js

var NodeGeocoder = require('node-geocoder');

var options = {
  provider: 'google',
  httpAdapter: 'https', // Default
  apiKey: ' ', // for Mapquest, OpenCage, Google Premier
  formatter: 'json' // 'gpx', 'string', ...
};

var geocoder = NodeGeocoder(options);

geocoder.reverse({lat:28.5967439, lon:77.3285038}, function(err, res) {
  console.log(res);
});

出力:

ノードgeo.js

[ { formattedAddress: 'C-85B, C Block, Sector 8, Noida, Uttar Pradesh 201301, India',
    latitude: 28.5967439,
    longitude: 77.3285038,
    extra: 
     { googlePlaceId: 'ChIJkTdx9vzkDDkRx6LVvtz1Rhk',
       confidence: 1,
       premise: 'C-85B',
       subpremise: null,
       neighborhood: 'C Block',
       establishment: null },
    administrativeLevels: 
     { level2long: 'Gautam Buddh Nagar',
       level2short: 'Gautam Buddh Nagar',
       level1long: 'Uttar Pradesh',
       level1short: 'UP' },
    city: 'Noida',
    country: 'India',
    countryCode: 'IN',
    zipcode: '201301',
    provider: 'google' } ]

非常に明確で実用的なフィードバックのおかげで、「node-geocoder」と「@ google / maps」の選択に違いはありますか?しかし、同じことをしているようです
Ade 2018

1
両方の出力は同じですが、node-geocoderはアドレスを取得するための簡略化されたモジュールであり、@ google / mapsは構成する必要があるアドレスを取得するためのAPIです。
KARTHIKEYAN.A 2018


4

これがpromiseを使用した最新のソリューションです。

function getAddress (latitude, longitude) {
    return new Promise(function (resolve, reject) {
        var request = new XMLHttpRequest();

        var method = 'GET';
        var url = 'http://maps.googleapis.com/maps/api/geocode/json?latlng=' + latitude + ',' + longitude + '&sensor=true';
        var async = true;

        request.open(method, url, async);
        request.onreadystatechange = function () {
            if (request.readyState == 4) {
                if (request.status == 200) {
                    var data = JSON.parse(request.responseText);
                    var address = data.results[0];
                    resolve(address);
                }
                else {
                    reject(request.status);
                }
            }
        };
        request.send();
    });
};

そしてそれをこのように呼んでください:

getAddress(lat, lon).then(console.log).catch(console.error);

promiseは、アドレスオブジェクトを「then」で返すか、エラーステータスコードを「catch」で返します。


3
これは、アクセスキーがないと機能しません。センサーパラメーターも廃止されました
Joro Tenev 2018

実際には機能していません
ProgrammingHobby

3

次のコードは都市名を取得するために正常に機能しますGoogle Map Geo APIを使用):

HTML

<p><button onclick="getLocation()">Get My Location</button></p>
<p id="demo"></p>
<script src="http://maps.google.com/maps/api/js?key=YOUR_API_KEY"></script>

脚本

var x=document.getElementById("demo");
function getLocation(){
    if (navigator.geolocation){
        navigator.geolocation.getCurrentPosition(showPosition,showError);
    }
    else{
        x.innerHTML="Geolocation is not supported by this browser.";
    }
}

function showPosition(position){
    lat=position.coords.latitude;
    lon=position.coords.longitude;
    displayLocation(lat,lon);
}

function showError(error){
    switch(error.code){
        case error.PERMISSION_DENIED:
            x.innerHTML="User denied the request for Geolocation."
        break;
        case error.POSITION_UNAVAILABLE:
            x.innerHTML="Location information is unavailable."
        break;
        case error.TIMEOUT:
            x.innerHTML="The request to get user location timed out."
        break;
        case error.UNKNOWN_ERROR:
            x.innerHTML="An unknown error occurred."
        break;
    }
}

function displayLocation(latitude,longitude){
    var geocoder;
    geocoder = new google.maps.Geocoder();
    var latlng = new google.maps.LatLng(latitude, longitude);

    geocoder.geocode(
        {'latLng': latlng}, 
        function(results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                if (results[0]) {
                    var add= results[0].formatted_address ;
                    var  value=add.split(",");

                    count=value.length;
                    country=value[count-1];
                    state=value[count-2];
                    city=value[count-3];
                    x.innerHTML = "city name is: " + city;
                }
                else  {
                    x.innerHTML = "address not found";
                }
            }
            else {
                x.innerHTML = "Geocoder failed due to: " + status;
            }
        }
    );
}

0

@SanchitGuptaと同じです。

この部分で

if (results[0]) {
 var add= results[0].formatted_address ;
 var  value=add.split(",");
 count=value.length;
 country=value[count-1];
 state=value[count-2];
 city=value[count-3];
 x.innerHTML = "city name is: " + city;
}

結果の配列をコンソールするだけです

if (results[0]) {
 console.log(results[0]);
 // choose from console whatever you need.
 var city = results[0].address_components[3].short_name;
 x.innerHTML = "city name is: " + city;
}

0

利用可能な多くのツールがあります

  1. すべてが書いたようにグーグルマップAPI
  2. このデータ「https://simplemaps.com/data/world-cities」を使用して無料バージョンをダウンロードし、「http://beautifytools.com/excel-to-json-converter.php」などのオンラインコンバーターを使用してExcelをJSONに変換します
  3. 誰かのIPアドレスを使用すると、ユーザーがハッキングできると考えるのは良くないかもしれないので、良くないIPアドレスを使用してください。

他の無料および有料のツールも利用できます


-1

BigDataCloudには、nodejsユーザーにとってもこのための優れたAPIがあります。

彼らが持っている自由-クライアントのためのAPIを。ただし、バックエンドの場合も API_KEYを使用します(クォータに応じて無料)。

彼らのGitHubページ

コードは次のようになります。

const client = require('@bigdatacloudapi/client')(API_KEY);

async foo() {
    ...
    const location: string = await client.getReverseGeocode({
          latitude:'32.101786566878445', 
          longitude: '34.858965073072056'
    });
}

-1

グーグルジオコーディングAPIを使用したくない場合は、開発目的で他のいくつかの無料APIを参照できます。たとえば、場所の名前を取得するために[mapquest] APIを使用しました。

次の機能を実装することで、場所名を簡単に取得できます

 const fetchLocationName = async (lat,lng) => {
    await fetch(
      'https://www.mapquestapi.com/geocoding/v1/reverse?key=API-Key&location='+lat+'%2C'+lng+'&outFormat=json&thumbMaps=false',
    )
      .then((response) => response.json())
      .then((responseJson) => {
        console.log(
          'ADDRESS GEOCODE is BACK!! => ' + JSON.stringify(responseJson),
        );
      });
  };


OPはGoogleMaps APIで解決策を求めていましたが、あなたはその質問に答えていないと思います。
のMichałTkaczyk

申し訳ありませんが、私はそうするための別の方法を提案しました。彼がグーグルジオコーディングAPIキーを持っていればそれはうまくいきます。
pankaj chaturvedi

-3

あなたは純粋なphpとグーグルジオコードAPIでそれを行うことができます

/*
 *
 * @param latlong (String) is Latitude and Longitude with , as separator for example "21.3724002,39.8016229"
 **/
function getCityNameByLatitudeLongitude($latlong)
{
    $APIKEY = "AIzaXXXXXXXXXXXXXXXXXXXXXXXXXXX"; // Replace this with your google maps api key 
    $googleMapsUrl = "https://maps.googleapis.com/maps/api/geocode/json?latlng=" . $latlong . "&language=ar&key=" . $APIKEY;
    $response = file_get_contents($googleMapsUrl);
    $response = json_decode($response, true);
    $results = $response["results"];
    $addressComponents = $results[0]["address_components"];
    $cityName = "";
    foreach ($addressComponents as $component) {
        // echo $component;
        $types = $component["types"];
        if (in_array("locality", $types) && in_array("political", $types)) {
            $cityName = $component["long_name"];
        }
    }
    if ($cityName == "") {
        echo "Failed to get CityName";
    } else {
        echo $cityName;
    }
}

1
javascriptソリューションではありません
Chintan Pathak
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.