javascript - 当模态类处于事件状态时,Google map 会消失

标签 javascript c# twitter-bootstrap google-maps

我有这个模式:

<form id="contactModal">
<div id="mymodal2" class="" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
     <div class="modal-dialog">
           <div class="modal-content">
              <div class="modal-header">                  
              <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
                <span class="modal-title th2" id="lblModalLabel" name="lblModalLabel">Contact</span>
            </div>
            <div class="modal-body">

如果我不添加 class="modal"

<div id="mymodal2" class="fade modal" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">

我对 map 没有任何问题,问题是 当我尝试添加模态类时,我的 map 消失了,为什么会发生?

---更新---

如果我运行没有模态类的应用程序,例如:

<div id="mymodal" class="" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true" >

然后打开 google chrome 检查器并通过它添加类。它将 map 加载到模态中。

这是我的 JS 代码:

 try {
            map = new GMaps({
                div: '#gmap_marker',
                lat: 19.4368277,
                lng: -99.1905598
            });


            map.addMarker({
                lat: 19.4368277,
                lng: -99.1905598,
                title: New City",
                infoWindow: {
                    content: '<strong>City</strong>'
                }
            });
            console.log("gmap processed");
        }
        catch (e) {
            alert(e);
        }

    $("#btnFirstMap").click(function () {


        try {
            map = new GMaps({
                div: '#gmap_marker',
                lat: 19.4368277,
                lng: -99.1905598
            });


            map.addMarker({
                lat: 19.4368277,
                lng: -99.1905598,
                title: "FirstMap",
                infoWindow: {
                    content: '<strong>City2</strong>'
                }
            });
        }
        catch (e) {
            alert(e);
        }

    });

    $("#btnCity3").click(function () {


        try {
            map = new GMaps({
                div: '#gmap_marker',
                lat: 18.6490907,
                lng: -91.8218911
            });


            map.addMarker({
                lat: 18.6490907,
                lng: -91.8218911,
                title: "City3,
                infoWindow: {
                    content: '<strong>City3</strong>'
                }
            });
        }
        catch (e) {
            alert(e);
        }

    });

最佳答案

确保:

1) 显式设置 map 容器大小,例如通过 CSS:

div#map {
    width: 560px !important;
    height: 600px !important;
}

2) 通过 resize 事件显示模式对话框后重新加载 map :

$('#myModal').on('show.bs.modal', function(e) {
    var map = createMap();
    google.maps.event.addListenerOnce(map, 'idle', function() {
        google.maps.event.trigger(map, 'resize'); 
    });
}) 

示例

$(document).ready(function() {
   
    $('#myModal').on('show.bs.modal', function(e) {
        var map = createMap();
        google.maps.event.addListenerOnce(map, 'idle', function() {
            google.maps.event.trigger(map, 'resize'); 
        });
    })

});


function createMap() {
    var mapControl = new GMaps({
        div: '#map',
        lat: -12.043333,
        lng: -77.028333
    });
    mapControl.addMarker({
        lat: -12.043333,
        lng: -77.03,
        title: 'Lima',
        details: {
            database_id: 42,
            author: 'HPNeo'
        },
        click: function(e) {
            if (console.log)
                console.log(e);
            alert('You clicked in this marker');
        }
    });
    return mapControl.map;
}
div#map {
    width: 560px !important;
    height: 600px !important;
}
<script type="text/javascript" src="http://code.jquery.com/jquery-2.0.2.js"></script>
<script type="text/javascript" src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="https://hpneo.github.io/gmaps/gmaps.js"></script>


<link rel="stylesheet" type="text/css" href="http://getbootstrap.com/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">


 
<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" id="modalOne" data-toggle="modal" data-target="#myModal">Show map</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">&times;</span>
                    <span class="sr-only">Close</span>

                </button>
                <h4 class="modal-title" id="myModalLabel">Map</h4>

            </div>
            <div class="modal-body">
                <div id="map"></div>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
            </div>
        </div>
    </div>
</div>

Codepen

关于javascript - 当模态类处于事件状态时,Google map 会消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37887996/

相关文章:

javascript - 如何使用复选框来制作过滤器?

javascript - AngularJS/AngularFire - 使用 ng-click 传递对象

c# - 遍历事件日志条目集合,IndexOutOfBoundsException

javascript - Lifo Typeahead 新 dom 元素

javascript - 如何修复VueJS中的 "this is undefined"?

javascript - 我可以从输入 type=date 而不是字符串中获取真实日期吗?

c# - 输入的默认样式不知何故搞乱了设计

c# - 如何从 C# 中的 C++ exe 获取文件版本信息?

django - 在 Django 中使用 Bootstrap 的最佳方式

javascript - 自定义弹出菜单 twitter-bootstrap 位于工具提示上方并在单击按钮时显示