Jak uzyskać nazwę miasta z punktu szerokości i długości geograficznej?

92

Czy istnieje sposób na pobranie nazwy miasta z punktu szerokości i długości geograficznej za pomocą interfejsu API map Google dla javascript?

Jeśli tak, czy mógłbym zobaczyć przykład?

Dennis Martinez
źródło
musisz znaleźć usługę internetową, która to oferuje.
Deviland

Odpowiedzi:

118

Nazywa się to odwrotnym geokodowaniem

smartcaveman
źródło
Niesamowite! Czytałem o tym, a teraz napływające zbyt wiele zapytań;) dzięki.
Dennis Martinez
Adres IP i pojedynczy użytkownik są takie same, jeśli używasz interfejsu API javascript, ale jeśli używasz na przykład PHP i myślisz, że osiągniesz te limity, musisz ograniczyć żądania do 1 na sekundę lub użyć serwery proxy, ale uważaj na serwery proxy, Google nie jest głupi i nie możesz ich wbić. Więcej informacji tutaj: developers.google.com/maps/documentation/business/articles/…
Andy Gee
26

Oto pełna próbka:

<!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>
Benny Neugebauer
źródło
Czy jest jakiś sposób, aby znaleźć lokalizację użytkownika na podstawie szerokości i długości geograficznej bez zgody użytkownika?
Vikas Verma
8
@VikasVerma, które byłoby poważnym naruszeniem prywatności, gdybyś mógł znaleźć lokalizację użytkownika bez jego zgody
omerio
@omerio dzięki, ale zrobiłem tam kod Zmusiłem użytkownika do kliknięcia zezwól, jeśli chce kontynuować.
Vikas Verma
1
To faktycznie dało mi dokładny adres domowy. Dokładnie to, czego chcę. Jak wyodrębnić, tak jak miasto i stan lub kod pocztowy?
ydobonebi
6

W node.js możemy użyć modułu node-geocoder npm, aby uzyskać adres z 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);
});

wynik:

node 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' } ]
KARTHIKEYAN.A
źródło
Dzięki za bardzo jasne i działające opinie. Czy byłaby jakaś różnica między wyborem „node-geocoder” a „@ google / maps”? Wydaje się, że robią to samo
Ade
1
oba wyjścia są takie same, ale node-geocoder jest uproszczonym modułem do pobierania adresu, a @ google / maps to api, aby uzyskać adres, który musimy skonfigurować.
KARTHIKEYAN,
4

Oto nowoczesne rozwiązanie wykorzystujące obietnicę:

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();
    });
};

I nazwij to tak:

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

Obietnica zwraca obiekt adresu w „to” lub kod statusu błędu w „catch”

Steven Spungin
źródło
3
To nie zadziałałoby bez klucza dostępu. Parametr czujnika też jest przestarzały
Joro Tenev
To właściwie nie działa
ProgrammingHobby
3

Poniższy kod działa poprawnie, aby uzyskać nazwę miasta (za pomocą 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>

SCENARIUSZ

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;
            }
        }
    );
}
Sanchit Gupta
źródło
0

To samo co @Sanchit Gupta.

w tej części

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

po prostu konsoluj tablicę wyników

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;
}
Fahad Hossain
źródło
0

Dostępnych jest wiele narzędzi

  1. Google Maps API, jak wszystkie napisane
  2. użyj tych danych „ https://simplemaps.com/data/world-cities ” pobierz bezpłatną wersję i przekonwertuj plik Excel na JSON za pomocą konwertera online, takiego jak „ http://beautifytools.com/excel-to-json-converter.php
  3. używaj adresu IP, który nie jest dobry, ponieważ używanie adresu IP kogoś może nie być dobrym użytkownikom, którzy myślą, że można ich zhakować.

dostępne są również inne bezpłatne i płatne narzędzia

user12449933
źródło
-1

BigDataCloud ma również fajne API do tego, również dla użytkowników nodejs.

mają API dla klienta - za darmo . Ale także do zaplecza , używając API_KEY (bezpłatnie zgodnie z przydziałem).

Ich strona GitHub .

kod wygląda następująco:

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

async foo() {
    ...
    const location: string = await client.getReverseGeocode({
          latitude:'32.101786566878445', 
          longitude: '34.858965073072056'
    });
}
OhadR
źródło
-1

W przypadku, gdy nie chcesz korzystać z Google Geocoding API, możesz skorzystać z kilku innych darmowych interfejsów API do celów programistycznych. na przykład użyłem [mapquest] API w celu uzyskania nazwy lokalizacji.

możesz łatwo pobrać nazwę lokalizacji, implementując następującą funkcję

 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),
        );
      });
  };

pankaj chaturvedi
źródło
OP prosił o rozwiązanie z Google Maps API, myślę, że nie odpowiadasz na pytanie.
Michał Tkaczyk
Przepraszam, ale właśnie zasugerowałem inny sposób, aby to zrobić. i działa dobrze, jeśli ma klucz API kodowania geograficznego Google.
pankaj chaturvedi
-3

możesz to zrobić za pomocą czystego php i google geocode 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;
    }
}
Hendi Ahmed
źródło
1
To nie jest rozwiązanie javascript
Chintan Pathak