我一直在使用 javascript Google Maps API 来构建以下地图:http ://springhillfarm.com.au/locations-map/现在我想在用户在搜索栏中搜索他们的位置时列出最近的 5 个引脚.
尝试进入像“North Epping”这样的郊区,地图将使用以下功能很好地移动:
$("#searchclick").click(function(){
var address = document.getElementById('searchbar').value;
var address = address + " Australia";
var geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var latitude2 = results[0].geometry.location.lat();
var longitude2 = results[0].geometry.location.lng();
var relocate = new google.maps.LatLng(latitude2, longitude2);
map.setCenter(relocate);
map.setZoom(12);
} //when status is OK
}); // geocode
});
但现在我真的希望它返回最近的 5 个引脚。
这在javascript中怎么可能?