久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<small id='CEkLJ'></small><noframes id='CEkLJ'>

<legend id='CEkLJ'><style id='CEkLJ'><dir id='CEkLJ'><q id='CEkLJ'></q></dir></style></legend>
    1. <i id='CEkLJ'><tr id='CEkLJ'><dt id='CEkLJ'><q id='CEkLJ'><span id='CEkLJ'><b id='CEkLJ'><form id='CEkLJ'><ins id='CEkLJ'></ins><ul id='CEkLJ'></ul><sub id='CEkLJ'></sub></form><legend id='CEkLJ'></legend><bdo id='CEkLJ'><pre id='CEkLJ'><center id='CEkLJ'></center></pre></bdo></b><th id='CEkLJ'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='CEkLJ'><tfoot id='CEkLJ'></tfoot><dl id='CEkLJ'><fieldset id='CEkLJ'></fieldset></dl></div>
          <bdo id='CEkLJ'></bdo><ul id='CEkLJ'></ul>
        <tfoot id='CEkLJ'></tfoot>

        傳單地圖未顯示在引導 div 中

        Leaflet Map not showing in bootstrap div(傳單地圖未顯示在引導 div 中)

        <tfoot id='AZdkp'></tfoot>
        1. <legend id='AZdkp'><style id='AZdkp'><dir id='AZdkp'><q id='AZdkp'></q></dir></style></legend>

            <small id='AZdkp'></small><noframes id='AZdkp'>

                <tbody id='AZdkp'></tbody>
            1. <i id='AZdkp'><tr id='AZdkp'><dt id='AZdkp'><q id='AZdkp'><span id='AZdkp'><b id='AZdkp'><form id='AZdkp'><ins id='AZdkp'></ins><ul id='AZdkp'></ul><sub id='AZdkp'></sub></form><legend id='AZdkp'></legend><bdo id='AZdkp'><pre id='AZdkp'><center id='AZdkp'></center></pre></bdo></b><th id='AZdkp'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='AZdkp'><tfoot id='AZdkp'></tfoot><dl id='AZdkp'><fieldset id='AZdkp'></fieldset></dl></div>
                <bdo id='AZdkp'></bdo><ul id='AZdkp'></ul>

                • 本文介紹了傳單地圖未顯示在引導 div 中的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  這是一個我無法弄清楚的超級奇怪的問題.我的 div 帶有地圖及其 css 樣式.Leaflet 地圖顯示在一個矩形中,而不是在 div 中.好像 z 索引是錯誤的,但我無法弄清楚.JS 在 document.ready 函數中.我在地圖 div 周圍添加了一個邊框,只是為了展示一切是如何關閉的.

                  CSS:

                  #map {width:100%;height:100%;margin-left:10px;margin-top:40px}

                  HTML:

                   

                  JS:

                  var map=L.map('map',{最小縮放:2,最大縮放:18}).setView([x,y],16);var buildingIcon=L.icon({iconUrl:'/images/bicon.png',圖標大小:[25,40],popupAnchor: [-3, -20],圖標錨:[14, 38]});L.marker(x,y],{圖標:建筑圖標,標題:城鎮,州"}).bindPopup('<b>first last</b><br>Email: 電子郵件地址<br>Cell: 電話號碼').addTo(地圖);mapLink='<a href="http://openstreetmap.org">OpenStreetMap</a>';L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '地圖數據和副本;' + 地圖鏈接,最大縮放:18}).addTo(地圖);

                  我已經修復了重疊問題,但最后一個問題仍然存在,即,

                  當頁面加載并在 document.ready() 上呈現地圖時,地圖僅在屏幕的左上角可見.如果我更改瀏覽器的大小(最大化、最小化),那么地圖會正確刷新.

                  解決方案

                  地圖打開后執行以下函數:

                  map.invalidateSize();

                  這將解決您的問題.

                  This is a super odd problem that I can not figure out. I have my div with the map and its css styling. The Leaflet map is showing up in one rectangle and not in the div. Its as if the z index is wrong, but I can not figure it out. The JS is in the document.ready function. I added a border around the map div just to show how off everything is.

                  CSS:

                  #map {width:100%;height:100%;margin-left:10px;margin-top:40px}
                  

                  HTML:

                    <div id="showTravel" class="row" style="display:none">
                          <div class="col-lg-12">
                              <div class="wrapper wrapper-content">
                          <h2 style="margin-top:-18px">All Travelers</h2>
                          <div id="travelContent">
                              <div id=map></div>
                          </div>
                              </div>
                          </div>
                      </div>
                  

                  JS:

                  var map=L.map('map',{
                          minZoom:2,
                      maxZoom:18
                  }).setView([x,y],16);
                  
                  var buildingIcon=L.icon({
                      iconUrl:'/images/bicon.png',
                      iconSize:[25,40],
                      popupAnchor: [-3, -20],
                      iconAnchor: [14, 38]
                  });
                  
                  L.marker(x,y],{
                      icon:buildingIcon,
                      title:'town, state'
                  })
                  .bindPopup('<b>first last</b><br>Email: email address<br>Cell: phone number')
                  .addTo(map);
                  
                  mapLink='<a href="http://openstreetmap.org">OpenStreetMap</a>';
                  
                  L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
                      attribution: 'Map data &copy; ' + mapLink,
                      maxZoom:18
                  }).addTo(map);
                  

                  I have fixed the overlapping problem, but the last problem still exists i.e.,

                  When the page loads and the map is rendered on the document.ready() the map is only visible in the top left corner of the screen. And If I changes the size of the browser (maximize,minimize) then the map refreshes correctly.

                  解決方案

                  Execute the following function once the map is opened:

                  map.invalidateSize();
                  

                  This will fix your problem.

                  這篇關于傳單地圖未顯示在引導 div 中的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Check if a polygon point is inside another in leaflet(檢查一個多邊形點是否在傳單中的另一個內部)
                  Changing leaflet markercluster icon color, inheriting the rest of the default CSS properties(更改傳單標記群集圖標顏色,繼承其余默認 CSS 屬性)
                  Trigger click on leaflet marker(觸發點擊傳單標記)
                  How can I change the default loading tile color in LeafletJS?(如何更改 LeafletJS 中的默認加載磁貼顏色?)
                  Add external geojson to leaflet layer(將外部geojson添加到傳單層)
                  Adding Leaflet layer control to sidebar(將 Leaflet 圖層控件添加到側邊欄)
                      <tbody id='A5zOO'></tbody>

                    <small id='A5zOO'></small><noframes id='A5zOO'>

                        <legend id='A5zOO'><style id='A5zOO'><dir id='A5zOO'><q id='A5zOO'></q></dir></style></legend>
                          <bdo id='A5zOO'></bdo><ul id='A5zOO'></ul>
                          • <i id='A5zOO'><tr id='A5zOO'><dt id='A5zOO'><q id='A5zOO'><span id='A5zOO'><b id='A5zOO'><form id='A5zOO'><ins id='A5zOO'></ins><ul id='A5zOO'></ul><sub id='A5zOO'></sub></form><legend id='A5zOO'></legend><bdo id='A5zOO'><pre id='A5zOO'><center id='A5zOO'></center></pre></bdo></b><th id='A5zOO'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='A5zOO'><tfoot id='A5zOO'></tfoot><dl id='A5zOO'><fieldset id='A5zOO'></fieldset></dl></div>
                            <tfoot id='A5zOO'></tfoot>

                            主站蜘蛛池模板: 日韩一区二区在线观看视频 | 2017天天干 | 四级黄色片 | 亚洲欧美在线视频 | 91黄视频| 欧美一区视频 | 欧美黄视频 | 亚洲国产成人91精品 | 国产无精乱码一区二区三区 | 免费毛片在线 | 91网站在线免费观看 | 国产精品一品二区三区的使用体验 | 少妇网址 | 日韩av大全 | 欧美一级淫片免费视频黄 | www.天天操 | 天天躁日日躁狠狠躁 | 日韩精品视频在线播放 | 中文字幕免费 | 免费a视频 | 首尔之春在线看 | 免费看黄色av | 国产一区二区三区在线 | 日韩a在线 | 日韩免费看片 | 日韩av在线不卡 | 亚洲精品一| 亚洲二区在线观看 | 亚洲专区一区 | 日韩成人精品 | 精品日韩在线观看 | av黄色在线 | 欧美一级片| 国产盗摄一区二区三区 | www.啪啪| 亚洲 欧美 另类 综合 偷拍 | 午夜激情福利 | 人人草人人爱 | 亚洲欧美日韩另类 | 综合久久综合 | 免费成人黄色 |