我正在使用谷歌地图对3个地理坐标表,然后通过一个地址,将“j Query”文档中的2个协调点通过到“PHP”文档中getJSON
。
<>可见> 然而,我注意到,地编码功能的功能保持了一种不确定的价值。 因此,PHP文档可得到一个未界定的变量。 我在哪里错了?
http://www.ohchr.org。
var search_latlng = geocodeAddress(search_location);
console.log(search_latlng);
$.getJSON( /main/get_places , {search_location: search_latlng}, function(json){
$("#result_listing").html( );
.
.
.
http://www.ohchr.org。
function geocodeAddress(address) {
var latlng = new Array(2);
geocoder.geocode( { address : address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
latlng[0] = results[0].geometry.location.lat();
latlng[1] = results[0].geometry.location.lng();
return latlng;
} else {
console.log("Geocode was not successful for the following reason: " + status);
}
});
}