在输入位置和附近位置查找商店并计算他们与搜索位置的距离

时间:2014-07-10 09:50:16

标签: javascript jquery json google-maps geocoding

我使用google map api 3根据用户输入的地址在google maps上找到商店。使用latlong完成geocoding转换的地址,我的代码工作正常。现在,我的客户希望我在搜索区域内绘制商店以及靠近该区域(近2英里)的商店并计算他们的距离。我想要的一个例子是this sitethis one。我的工作Javascript如下

var markers = response.d.split('^^');
            var latlng = new google.maps.LatLng(51.474634, -0.195791);
            var mapOptions1 = {
                zoom: 14,
                center: latlng
            }
            var geocoder = new google.maps.Geocoder();
            var infoWindow = new google.maps.InfoWindow();
            var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions1);
            for (i = 0; i < markers.length; i++) {
                var data = markers[i];
                geocoder.geocode({ 'address': data }, function (results, status) {
                    if (status == google.maps.GeocoderStatus.OK) {
                        map.setCenter(results[0].geometry.location);



                        var marker = new google.maps.Marker({
                            map: map,
                            position: results[0].geometry.location,
                            title: results[0].formatted_address
                        });


                    } else {
                        alert("Geocode was not successful for the following reason: " + status);
                    }
                });

            }
            (function (marker, data) {

                // Attaching a click event to the current marker
                google.maps.event.addListener(marker, "click", function (e) {
                    infoWindow.setContent(data);
                    infoWindow.open(map, marker);
                });
            })(marker, data);

上面的代码看起来很奇怪,我在正文onload上做了初始化,我的markers数组包含了所有地址,geocode将这些地址转换为latlongmarker绘制它们。 我想api给我更近的地址和从搜索位置到每家商店的距离。我怎么能得到它?

更新

距离计算可以使用MrUpsidown的答案来完成,但我无法到达附近的地方。我去了here,发现https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=7500&types=library&sensor=false&key=AIzaSyDRn2crkKMALHkQAOyadm-d2u_bIPeBA1o提供了数据,但我不知道如何有效地阅读,因为建议我尝试使用下面的代码在jason中得到这个

$.getJSON("https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=7500&types=library&sensor=false&key=AIzaSyDRn2crkKMALHkQAOyadm-d2u_bIPeBA1o", function (data) {
                alert(data);
            });

但没有运气:(我错过了什么?

1 个答案:

答案 0 :(得分:1)

你必须自己计算距离。您可以使用geometry librarycomputeDistanceBetween方法。

例如:

var latlng = new google.maps.LatLng(51.474634, -0.195791);

然后在地理编码器中:

var distance = google.maps.geometry.spherical.computeDistanceBetween(latlng, results[0].geometry.location);

您需要将这些标记及其距离存储在一个数组中,如果您希望它们按特定顺序显示,请对它们进行排序。