29

我想通过向 API 提供城市名称来获取城市的纬度和经度。无论用户如何输入城市,它都应该适用于大多数城市。

例如:

城市可以是“迈阿密,美国”或城市可以是“迈阿密,美国”

如何打印它的纬度?

4

3 回答 3

60

您可以在此处找到 jsfiddled 代码:http: //jsfiddle.net/YphZw/ 或以下:

$("#btn").click(function(){
            var geocoder =  new google.maps.Geocoder();
    geocoder.geocode( { 'address': 'miami, us'}, function(results, status) {
          if (status == google.maps.GeocoderStatus.OK) {
            alert("location : " + results[0].geometry.location.lat() + " " +results[0].geometry.location.lng()); 
          } else {
            alert("Something got wrong " + status);
          }
        });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<html>
<head>
    <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
</head>
<body>
    <input id="btn" type="button" value="search for miami coordinates" />
</body>
</html>

如果您想要更多 Javascript API 示例,请尝试以下链接:https ://developers.google.com/maps/documentation/javascript/examples/

我写的代码灵感来自geocoding-simple示例。

问候。

编辑1:

您可以使用非官方的 PHP 库来实现它。检查这个例子: http ://www.bradwedell.com/phpgooglemapapi/demos/geocoding.php (代码在底部=

于 2012-06-22T01:41:05.257 回答
13

您可以使用 Google 的地理编码服务,例如,

http://maps.googleapis.com/maps/api/geocode/xml?address=Miami+FL&sensor=false

这将为您提供各种格式(JSON、XML 等)的地理参考数据。无论如何,该位置肯定在返回的数据块中。

API 文档位于:

https://developers.google.com/maps/documentation/geocoding/

于 2012-06-22T01:40:11.147 回答
2

根据下面的评论更新: 2018 年 7 月之后不起作用。


这似乎是不必要的复杂。这是一个示例“附近事件”地图。它需要City, States,将它们转换为latLng坐标,并在地图上放置标记:

// Nearby Events with Google Maps
window.nearbyEventsMap = () => {
    const centerOfUS = {
        lat: 37.09024,
        lng: -95.712891
    }

    // Create a map object and specify the DOM element for display.
    const map = new google.maps.Map(document.querySelector('#nearby_events_map'), {
        center: centerOfUS,
        scrollwheel: false,
        zoom: 4
    })

    // Create a marker and set its position.
    const geocoder = new google.maps.Geocoder()

    // Filter out duplicate cityStates
    let cityStates = {}
    document.querySelectorAll('.nearby_event_city_state').forEach(event => {
        cityStates[event] = event.innerText
    })

    // `cityState` is in the format of "City, State". It's not picky about state being a word or the abbreviation.
    for (const cityState in cityStates) {
        const location = cityStates[cityState]

        geocoder.geocode({
            address: location
        }, function (results, status) {
            if (status === 'OK') {
                const result = results[0].geometry.location
                const lat = result.lat()
                const lng = result.lng()
                const latLng = {
                    lat,
                    lng
                }

                return new google.maps.Marker({
                    map: map,
                    position: latLng
                })
            }
        })
    }
}
// /Nearby Events with Google Maps

确保包含您的<script>标签。

<script src="/dist/js/main.js"></script>

<!-- We're loading this after the main.js script so the callback from main.js will be available to it. -->
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=nearbyEventsMap"></script>

StackOverflow 请加入其他所有人并获得带有语法突出显示的 GitHub 降价...

于 2017-01-08T03:36:44.283 回答