gpt4 book ai didi

javascript - Jquery 位置选择器自动完成在引导模式中不起作用

转载 作者:行者123 更新时间:2023-11-30 11:44:35 25 4
gpt4 key购买 nike

我在引导模式中使用 jquery 位置选择器。它会打开 map ,但自动完成建议不可见。

html和javascript代码如下。

$timeout(function() {
$('#onboardingModal').on('shown.bs.modal', function() {
$('#mappicker').locationpicker({
location: {
latitude: 12.9715987,
longitude: 77.59456269999998
},
radius: 200,
inputBinding: {
locationNameInput: $('#locationInput')
},
enableAutocomplete: true,
autocompleteOptions: {
componentRestrictions: {country: 'in'}
},
onchanged: function (currentLocation, radius, isMarkerDropped) {
var addressComponents = $(this).locationpicker('map').location.addressComponents;
$scope.lat = $(this).locationpicker('map').location.latitude
$scope.lng = $(this).locationpicker('map').location.longitude
// updateControls(addressComponents);
},
});
});
});
<div class="modal fade" id="onboardingModal" tabindex="-1" role="dialog" aria-labelledby="onboardingModalLabel" style="overflow:hidden" data-backdrop="static" data-keyboard="false">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="form-group">
<label for="locationInput">LOCATION</label>
<input type="text" class="form-control" id="locationInput" placeholder="Search"/>
<div align="center" class="map" id="mappicker" style="width: 500px !important; height: 300px"></div>
</div>
</div>
</div>
</div>

尝试更改 z-index 还添加了 jquery 的 ui-front 类,但在这两种情况下均无效。我做错了什么?

最佳答案

我在 github 的一个问题中得到了答案。需要将 z-index 添加到 pac-container。

.pac-container{z-index:2000 !important;}

引用:Github issue

关于javascript - Jquery 位置选择器自动完成在引导模式中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41445145/

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