我目前正在尝试在应用程序内部填写“组织”字段。
我正在使用这段JavaScript来获取组织信息:
function initialize() {
var options = {
types: ['establishment'],
componentRestrictions: {country: ["de", "us", "uk"]}
};
var input = document.getElementById('organization');
new google.maps.places.Autocomplete(input, options);
}
google.maps.event.addDomListener(window, 'load', initialize);
这给了我以下结果:
Google自动填充容器:
现在,我要删除街道地址,城市,州,邮编和国家/地区。
这里是一个例子: