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

    <bdo id='m2zB4'></bdo><ul id='m2zB4'></ul>

    <legend id='m2zB4'><style id='m2zB4'><dir id='m2zB4'><q id='m2zB4'></q></dir></style></legend>
    1. <small id='m2zB4'></small><noframes id='m2zB4'>

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

      反應傳單地圖未正確顯示

      react-leaflet map not correctly displayed(反應傳單地圖未正確顯示)

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

          <tbody id='dWnH1'></tbody>
        • <legend id='dWnH1'><style id='dWnH1'><dir id='dWnH1'><q id='dWnH1'></q></dir></style></legend>

              <bdo id='dWnH1'></bdo><ul id='dWnH1'></ul>
              <tfoot id='dWnH1'></tfoot>

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

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

                問題描述

                我正在嘗試使用 react-leaflet 來顯示地圖.我使用

                這是我的代碼:

                DeviceMap.js

                從'react'導入反應從'react-leaflet'導入{地圖,標記,彈出窗口,TileLayer};導出類 DeviceMap 擴展 React.Component {構造函數(){極好的();這個.state = {緯度:51.505,液化天然氣:-0.09,縮放:13,};}使成為() {常量位置 = [this.state.lat, this.state.lng];返回 (<地圖中心={position} zoom={this.state.zoom} scrollWheelZoom={false}>

                DeviceTabs.js

                導出類 DeviceTabs 擴展 React.Component {狀態 = {指數:0};handleTabChange = (索引) =>{this.setState({ index })};使成為 () {返回 (<標簽索引={this.state.index} onChange={this.handleTabChange}><標簽標簽='值'><DeviceTable {...this.props}/></標簽><標簽標簽='地圖'><div className={style.leaflet}><設備映射/></div></標簽></標簽>)}}

                style.scss

                .leaflet {高度:300px;寬度:100%;}

                控制臺中沒有錯誤,我不知道在哪里搜索.由于小提琴正在工作,因此它不是錯誤.我錯過了什么嗎?

                解決方案

                看起來你還沒有加載 Leaflet 樣式表.

                來自 react-leaflet GitHub 指南:

                <塊引用>

                如果您不熟悉 Leaflet,請確保在使用此庫之前閱讀其快速入門指南.您尤其需要將其 CSS 添加到您的頁面以正確呈現地圖,并設置容器的高度.

                http://leafletjs.com/examples/quick-start/

                這是你需要的:

                更新

                注意 @ThomasThiebaud 表示您可能還需要設置 .leaflet-container

                的高度

                --

                Ange Loron 還提供了一個正確的、可選的 JS 模塊導入(相對于 cdn 或樣式鏈接)

                導入'leaflet/dist/leaflet.css';



                對于它的價值,文檔頁面設計不佳...維護者在 GitHub 中不斷處理這個問題,但由于某種原因,這個問題是*錯誤的用戶不斷不進行所需的設置./s

                I'm trying to use react-leaflet to display a map. I use the code from this fiddle which is working, but on my computer I have this output

                Here is my code :

                DeviceMap.js

                import React from 'react'
                import { Map, Marker, Popup, TileLayer } from 'react-leaflet';
                
                export class DeviceMap extends React.Component {
                  constructor() {
                    super();
                    this.state = {
                      lat: 51.505,
                      lng: -0.09,
                      zoom: 13,
                    };
                  }
                
                  render() {
                    const position = [this.state.lat, this.state.lng];
                    return (
                      <Map center={position} zoom={this.state.zoom} scrollWheelZoom={false}>
                        <TileLayer
                          attribution='&copy; <a >OpenStreetMap</a> contributors'
                          url='http://{s}.tile.osm.org/{z}/{x}/{y}.png'
                        />
                        <Marker position={position}>
                          <Popup>
                            <span>A pretty CSS3 popup. <br/> Easily customizable.</span>
                          </Popup>
                        </Marker>
                      </Map>
                    );
                  }
                }
                
                export default DeviceMap
                

                DeviceTabs.js

                export class DeviceTabs extends React.Component {
                  state = {
                    index: 0
                  };
                
                  handleTabChange = (index) => {
                    this.setState({ index })
                  };
                
                  render () {
                    return (
                      <Tabs index={this.state.index} onChange={this.handleTabChange}>
                        <Tab label='Values'>
                          <DeviceTable {...this.props} />
                        </Tab>
                        <Tab label='Map'>
                          <div className={style.leaflet}>
                            <DeviceMap />
                          </div>
                        </Tab>
                      </Tabs>
                    )
                  }
                }
                

                style.scss

                .leaflet {
                  height: 300px;
                  width: 100%;
                }
                

                There is no error in the console, and I have no more idea where to search. Since the fiddle is working it is not a bug. Did I miss something ?

                解決方案

                Looks like you haven't loaded in the Leaflet stylesheet.

                From the react-leaflet GitHub guide:

                If you are not familiar with Leaflet, make sure you read its quick start guide before using this library. You will notably need to add its CSS to your page to render the map properly, and set the height of the container.

                http://leafletjs.com/examples/quick-start/

                Here is what you'll need:

                <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" />
                

                Update

                Note @ThomasThiebaud indicates you may also have to set up the height of .leaflet-container

                --

                Ange Loron also gave a correct, optional, JS module import (vs cdn or style link)

                import 'leaflet/dist/leaflet.css';



                For what its worth, the documentation page is poorly designed... and the maintainer continuously deals with this issue in GitHub, but for some reason, the issue is the *fault of the users who continuously don't do the required setup. /s

                這篇關于反應傳單地圖未正確顯示的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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 中的默認加載磁貼顏色?)
                Adding Leaflet layer control to sidebar(將 Leaflet 圖層控件添加到側邊欄)
                Leaflet - get latitude and longitude of a marker inside a pop-up(Leaflet - 在彈出窗口中獲取標記的緯度和經度)

                    <tbody id='2P9Mo'></tbody>
                  • <tfoot id='2P9Mo'></tfoot><legend id='2P9Mo'><style id='2P9Mo'><dir id='2P9Mo'><q id='2P9Mo'></q></dir></style></legend>

                    <small id='2P9Mo'></small><noframes id='2P9Mo'>

                      <bdo id='2P9Mo'></bdo><ul id='2P9Mo'></ul>
                        <i id='2P9Mo'><tr id='2P9Mo'><dt id='2P9Mo'><q id='2P9Mo'><span id='2P9Mo'><b id='2P9Mo'><form id='2P9Mo'><ins id='2P9Mo'></ins><ul id='2P9Mo'></ul><sub id='2P9Mo'></sub></form><legend id='2P9Mo'></legend><bdo id='2P9Mo'><pre id='2P9Mo'><center id='2P9Mo'></center></pre></bdo></b><th id='2P9Mo'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='2P9Mo'><tfoot id='2P9Mo'></tfoot><dl id='2P9Mo'><fieldset id='2P9Mo'></fieldset></dl></div>
                        1. 主站蜘蛛池模板: 日韩一区二区不卡 | 日本精品一区二区三区在线观看 | 国产高清免费 | 国产剧情一区二区三区 | 久久九九影视 | 亚洲视频一区在线 | 国产目拍亚洲精品99久久精品 | 91在线一区二区 | 日韩在线综合 | 欧美日韩在线免费 | 羞羞的视频免费观看 | 神马久久av | 欧美日韩一区二区在线观看 | 免费在线一区二区三区 | 激情小说综合网 | 日韩av一区二区在线观看 | 日本综合在线观看 | 黄色一级大片视频 | 一区二区三区高清在线观看 | 欧美一区二区 | 三级黄色片在线观看 | 精品乱人伦一区二区三区 | 久久久久久一区 | 欧美精品在线免费观看 | 天天操夜夜操 | 视频在线一区二区 | 亚洲视频在线观看 | 97色在线观看免费视频 | 欧美精品乱码99久久影院 | 国产在线视频一区 | 日韩一区二区三区四区五区 | 日韩在线免费视频 | 99国产精品99久久久久久 | 欧美在线国产精品 | 91精品国产91久久久久久吃药 | 美日韩免费视频 | 日一日操一操 | 国产成人99久久亚洲综合精品 | 中文字幕亚洲精品 | 国产第一区二区 | 久久国产欧美一区二区三区精品 |