Here is a link to the same question.
但我希望使用Google Geocode解答此问题。 有人可以使用Meteor和Blaze为我提供执行以下操作的代码。
非常感谢!
答案 0 :(得分:0)
Geocoder通过文本字符串获取位置信息,现在您必须将此位置信息传递给Places功能。我已经将Google Places代码包装在一个函数中,并从geocoder进行调用。
var address = '12 Crest View Ct';
geocoder.geocode({'address': address},
function(results, status) {
if(status == google.maps.GeocoderStatus.OK){
loc = results[0].geometry.location;
var bounds = new google.maps.LatLngBounds();
document.write(bounds.extend(results[0].geometry.location));
map.fitBounds(bounds);
new google.maps.Marker({
position:results[0].geometry.location,
map: map
});
place(loc); //here is the function call
}
}
);