如何在地理编码过程中扩展自动完成的源
我为 Google 地图创建了一个类似的自动完成字段。它正在工作,但我需要用我自己的点扩展地址列表(特别是 category) 。自动完成函数的 source 选项需要扩展:
gc = new google.maps.Geocoder();
$(Element).autocomplete({
source: function(request, response) {
gc.geocode( {'address': request.term }, function(results, status) {
response($.map(results, function(item) {
return {
label: item.formatted_address,
value: item.formatted_address,
latitude: item.geometry.location.lat(),
longitude: item.geometry.location.lng()
}
}))
})
},
select: ...
});
知道吗?谢谢你的期待
I create an autocomplete field like that for the Google Maps. It's working, but I need to extend the address list with my own points (specifically with category). The autocomplete function's source option needs the extending:
gc = new google.maps.Geocoder();
$(Element).autocomplete({
source: function(request, response) {
gc.geocode( {'address': request.term }, function(results, status) {
response($.map(results, function(item) {
return {
label: item.formatted_address,
value: item.formatted_address,
latitude: item.geometry.location.lat(),
longitude: item.geometry.location.lng()
}
}))
})
},
select: ...
});
Any idea? Thank you in anticipation
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论