gpt4 book ai didi

javascript - jQuery 自动完成与谷歌地图地址查找

转载 作者:行者123 更新时间:2023-12-02 19:33:51 25 4
gpt4 key购买 nike

如何重现 this plugin在 jsfiddle 中?到目前为止的代码是 here 。我的问题是 - 我可以使用 firebug 看到每个请求的响应数据,但自动完成列表没有显示。谢谢你们的宝贵时间。

直接从 fiddle 添加代码 -HTML:

<!-- required js libraries -->
<script type="text/javascript" src="jquery-1.7.1.min.js"></script> <!-- jQuery is directly loaded from fiddle, so in the live example I skipped this line -->
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="http://gmap3.net/js/gmap3-4.1-min.js"></script>
<script type="text/javascript" src="https://raw.github.com/jbdemonte/autocomplete/master/jquery-autocomplete.min.js"></script>

<!-- this is required to help autocomplete plugin -->
<link rel="stylesheet" type="text/css" href="https://raw.github.com/jbdemonte/autocomplete/master/jquery-autocomplete.css" />

<input type="text" id="address" size="60"/>
<div id="test" style="height:350px; width:600px"></div>​

这是 JavaScript :

/*This one initializes the map*/
$("#test").gmap3();

/*This is the autocomplete code*/
$('#address').autocomplete({
source: function() {
$("#test").gmap3({
action:'getAddress',
address: $(this).val(),
callback:function(results){
if (!results) return;
$('#address').autocomplete(
'display',
results,
false
);
}
});
},
cb:{
cast: function(item){
return item.formatted_address;
},
select: function(item) {
$("#test").gmap3(
{action:'clear', name:'marker'},
{action:'addMarker',
latLng:item.geometry.location,
map:{center:true}
}
);
}
}
});​

最佳答案

可以通过将输入包装在容器中并在该容器和 map 之间添加一些边距来使您的版本正常工作。我认为 css 没有从 github 资源正确传递,因为我还必须添加一些额外的 z-index 才能让结果列表显示在 map 顶部

工作演示:http://jsfiddle.net/VBFxp/3/

关于javascript - jQuery 自动完成与谷歌地图地址查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11178562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com