需要一些帮助。
我正在使用Google Maps API v3来获取存储在我的数据库中的人类可读地址的纬度和经度,然后在Google地图画布上放置1个标记。非常直截了当。
我遇到的问题是某些地址正在回溯状态代码 - > ZERO_RESULTS
如果我在maps.google.com中输入这些相同的地址,他们会找到该特定区域并使用带近似值的标记对其进行映射。
我在数据库中的某些地址并不具体,这意味着他们可能没有邮政编码和/或他们可能没有城市,但都有省/地区和国家。另外需要注意的是,他们都没有街道地址。
一些人类可读的地址可能包含短划线( - ),空格(),撇号(')和逗号(,)
踢回ZERO_RESULTS的地址示例如下:
Soul-t'ukpyolsi, Korea, South
在该具体示例中,Country在名称中有逗号和空格,Region也有撇号和短划线。
以下是我正在使用的Javascript代码:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&key=MYKEY&sensor=false"></script>
<script>
function initialize() {
var myLatlng = new google.maps.LatLng(<?php echo $lat; ?>,<?php echo $long; ?>);
var mapOptions = {
zoom: 5,
center: myLatlng
}
var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
我正在使用PHP根据存储在我的数据库中的地址元素生成完整的地址路径。这是我用来生成路径然后发出geolocator请求的代码:
请记住,City and Postal Code / Zip是可选元素
// Replace any spaces in vars
if (isset($gmaps_city)){
$gmaps_city = str_replace(" ","+",$gmaps_city);
}
if (isset($gmaps_province)){
$gmaps_province = str_replace(" ","+",$gmaps_province);
}
if (isset($gmaps_country)){
$gmaps_country = str_replace(" ","+",$gmaps_country);
}
if (isset($gmaps_pcode)){
$gmaps_pcode = str_replace(" ","+",$gmaps_pcode);
}
// If Postal Code and City
if (isset($gmaps_city) AND isset($gmaps_pcode)){
$gmaps_path = $gmaps_city.",+".$gmaps_province.",+".$gmaps_country.",+".$gmaps_pcode."&sensor=false";
// If City but no Postal Code
} else if (isset($gmaps_city) AND !isset($gmaps_pcode)){
$gmaps_path = $gmaps_city.",+".$gmaps_province.",+".$gmaps_country."&sensor=false";
// If Postal Code but no City
} else if (!isset($gmaps_city) AND isset($gmaps_pcode)){
$gmaps_path = $gmaps_province.",+".$gmaps_country.",+".$gmaps_pcode."&sensor=false";
// Only Province and Country
} else {
$gmaps_path = $gmaps_province.",+".$gmaps_country."&sensor=false";
}
// Determine Lat and Long of Address
$geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$gmaps_path);
$output= json_decode($geocode);
$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;
$status = $output->status;
非常感谢任何帮助。
答案 0 :(得分:2)
由于拼写错误,该示例可能会导致问题。下列: “Seoul-t'ukpyolsi,韩国,南” 不返回ZERO_RESULTS。
短划线和撇号不应该根据您的代码导致问题。请提供另一个例子。