我有一个网络应用,我使用javascript google geocoder:
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': from }, function(results, status) {
var from_lat = results[0].geometry.location.lat();
var from_lng = results[0].geometry.location.lng();
});
它几乎可以找到任何地址,但是如果我搜索一些感兴趣的点,我会得到:ZERO_RESULTS状态。 例如:
"Azrieli Center, Derech Menachem Begin, Tel Aviv-Yafo, Israel"
如何更改我的代码才能找到这种地方?
答案 0 :(得分:0)
企业被排除在Geocoding API之外,因此您必须使用places library Maps JavaScript API才能找到此类POI。
请在jsbin上查看此示例:http://jsbin.com/jayabe/edit?html,output