谷歌地图自动完成功能在模态弹出窗口中不起作用

问题描述 投票:0回答:5

我正在使用谷歌地图API。我正在尝试为输入框实现自动完成地址功能,但问题是在页面中一切似乎都可以工作,但在模式弹出窗口中却不起作用。

这是html

    <div class="col-xs-5 col-sm-2 col-md-2">
    <a href="javascript:void(0)" data-ng-click="addlocationpopup()">+New 
    Location</a>
    </div> <!--button which calls popup -->
    

这是模式弹出窗口

    <div class="modal right fade addlocation" id="myModal_5" tabindex="-1"
    role="dialog" aria-labelledby="myModalLabel2" data-keyboard="false">
    <div class="modal-dialog" role="document">
    <div class="modal-content">
        <div class="modal-header">
            <h4 class="modal-title" id="myModalLabel1">ENTER LOCATION 
            DETAILS</h4>
        </div>
        <form name="locationForm" novalidate="novalidate" method="post">
            <div class="modal-body">
                <div class="row"> 
                  <div>
                  <input id="autocomplete" placeholder="Enter your address"
                  onFocus="geolocate()" type="text"></input>
                  </div>
                </div>
             </div>
         </form>
        </div>
       </div>
      </div>
    <script 
    src="https://maps.googleapis.com/maps/api/js?
    key=mykey&libraries=places&callback=initAutocomplete" async defer>
    </script>
    <script>
    var placeSearch, autocomplete;
    var componentForm = {
    street_number: 'short_name',
    route: 'long_name',
    locality: 'long_name',
    administrative_area_level_1: 'short_name',
    country: 'long_name',
    postal_code: 'short_name'
  };

  function initAutocomplete() {
   autocomplete = new google.maps.places.Autocomplete(
        /** @type {!HTMLInputElement} */(document.getElementById('autocomplete')),
        {types: ['geocode']});
   autocomplete.addListener('place_changed', fillInAddress);
  }

  function fillInAddress() {
    var place = autocomplete.getPlace();

    for (var component in componentForm) {
      document.getElementById(component).value = '';
      document.getElementById(component).disabled = false;
    }

    for (var i = 0; i < place.address_components.length; i++) {
      var addressType = place.address_components[i].types[0];
      if (componentForm[addressType]) {
        var val = place.address_components[i][componentForm[addressType]];
        document.getElementById(addressType).value = val;
      }
    }
  }

  function geolocate() {
    if (navigator.geolocation) {
      navigator.geolocation.getCurrentPosition(function(position) {
        var geolocation = {
          lat: position.coords.latitude,
          lng: position.coords.longitude
        };
        var circle = new google.maps.Circle({
          center: geolocation,
          radius: position.coords.accuracy
        });
        autocomplete.setBounds(circle.getBounds());
      });
    }
  }
</script>

控制器js

    $scope.addlocationpopup = function(){
    $(".addlocation").modal("show");
    }

如果在页面中我放置一个输入框并在其中输入内容,它就可以正常工作。但在模态中它不起作用,也就是说,当我在输入框中键入内容时,这些位置没有显示。我不明白为什么它在弹出窗口中不起作用,因为加载页面时脚本已经加载。谁能告诉我如何让它在模态弹出窗口中工作?

javascript html angularjs google-maps
5个回答
15
投票

“自动完成”建议的结果存在,但隐藏在具有较高“z-index”值的弹出/模式窗口下方。要解决此问题,请将以下 CSS 添加到样式表中: div.pac-container { z-index: 99999999999 !important; }

对于
Angular 4+

4
投票

::ng-deep .modal { z-index: 1001 !important;} ::ng-deep .modal-backdrop {z-index: 1000 !important;} ::ng-deep .pac-container {z-index: 1055 !important;}

我可以通过添加这些行来修复它:

3
投票

终于解决了这个问题。当我在输入框中输入内容时,我使用 z-index css 功能来显示自动完成地址

2
投票

现在我可以看到地址建议了。


尝试使用以下组件 scss 文件:


-1
投票

© www.soinside.com 2019 - 2024. All rights reserved.