最近的引腳我一直在使用JavaScript谷歌地圖API來構建以下地圖:http://springhillfarm.com.au/locations-map/,現在我想,當用戶在搜索欄中搜索其位置列出最近5針。查找谷歌地圖
試試進入像「北埃平」郊區和地圖將使用下面的函數以及移動:
$("#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這是什麼?
由「顯示五個引腳」我真正的意思,返回最接近的,所以我可以在HTML ... –