InvalidValueError:在属性latLng中:不是LatLng或LatLngLiteral:不是Object

时间:2015-05-28 11:49:54

标签: php google-maps reverse-geocoding

我在我的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()

0 个答案:

没有答案