我在我的php页面中有一个路线服务,我从另一个php页面获取目标latlng值
var dest='<?php echo $dest;?>';
显示方向。我想显示我使用反向地理编码的latlng的目的地址:
var geo = new google.maps.Geocoder();
geo.geocode({'latLng':dest},function(results,status){
document.getElementById('txtDestination').innerHTML = results[1].formatted_address;
});
但是没有把latlng的值抛出错误:
InvalidValueError: in property latLng: not a LatLng or LatLngLiteral: not an Object
我使用alert()
显示了目标的测试值,但它显示正确,但我不知道它为什么不接受Geocoder()