久久久久久久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>

                            主站蜘蛛池模板: 中文字幕乱码一区二区三区 | 天天弄天天操 | 老司机午夜性大片 | a亚洲精品 | 亚洲最大福利网 | 99久久亚洲 | 性色av一区 | 伊人久久综合 | 欧美久久视频 | 久久精品亚洲一区二区三区浴池 | 亚洲二区在线观看 | 亚州激情 | 精品日韩一区二区 | 久久精品一级 | 免费中文字幕 | 欧美xxxx性xxxxx高清 | 在线视频a | 欧美国产精品一区二区三区 | 精品国产精品国产偷麻豆 | 久久国产精品无码网站 | 国产一区二区三区免费 | 久久国产精品一区 | 精品美女视频在线观看免费软件 | 免费能直接在线观看黄的视频 | 午夜免费网 | 国产一区二区三区四区 | 久久夜视频 | 欧美日韩理论 | 一a级片| 日韩中文字幕在线 | 中文字幕第十一页 | 欧美高清视频 | 免费视频一区二区 | 黄色日批视频 | 日韩精品一区二区三区中文在线 | 久久国产高清视频 | 国产精品久久久久久婷婷天堂 | 高清一区二区三区 | 成人精品视频免费 | 国产免费拔擦拔擦8x高清 | 在线观看亚 |