web-dev-qa-db-fra.com

la carte de la fiche de réaction ne s'affiche pas correctement

J'essaie d'utiliser react-leaflet pour afficher une carte. J'utilise le code de ce violon qui fonctionne, mais sur mon ordinateur j'ai cette sortie

enter image description here

Voici mon 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 href="http://osm.org/copyright">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%;
}

Il n'y a pas d'erreur dans la console, et je n'ai plus d'idée où chercher. Puisque le violon fonctionne, ce n'est pas un bug. Ai-je oublié quelque chose ?

22
ThomasThiebaud

Il semble que vous n'ayez pas chargé la feuille de style de la brochure.

Dans le guide github de React-Leaflet:

Si vous n'êtes pas familier avec Leaflet, assurez-vous de lire son guide de démarrage rapide avant d'utiliser cette bibliothèque. Vous devrez notamment ajouter son CSS à votre page pour rendre la carte correctement et définir la hauteur du conteneur.

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

Voici ce dont vous aurez besoin:

<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />

mise à jour:

Comme @ThomasThiebaud l'indique, vous devez également définir la hauteur de .leaflet-container



Pour ce que ça vaut, la page de documentation est mal conçue ... et le responsable traite en permanence ce problème dans github, mais pour une raison quelconque, le problème est la * faute des utilisateurs qui ne font pas en permanence la configuration requise./s

30
rambossa

Juste au cas où quelqu'un rencontrerait le même problème, je l'ai résolu en ajoutant simplement ceci:

import 'leaflet/dist/leaflet.css';
9
Ange Loron

Essaye ça

import React, { Component } from 'react'
import Leaflet from 'leaflet';
import { Map, TileLayer, Marker, Popup } from 'react-leaflet'
import 'leaflet/dist/leaflet.css';

Leaflet.Icon.Default.imagePath =
'../node_modules/leaflet'

delete Leaflet.Icon.Default.prototype._getIconUrl;

Leaflet.Icon.Default.mergeOptions({
    iconRetinaUrl: require('leaflet/dist/images/marker-icon-2x.png'),
    iconUrl: require('leaflet/dist/images/marker-icon.png'),
    shadowUrl: require('leaflet/dist/images/marker-shadow.png')
});



export default class MapDisplay extends Component {
state = {
    lat: 41.257017,
    lng: 29.077524,
    zoom: 13,
}


render() {
    const position = [this.state.lat, this.state.lng]
    return (
    <Map center={position} zoom={this.state.zoom} style={{height : '400px'}}>
        <TileLayer
        attribution='&amp;copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
        url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
        />
        <Marker position={position}>
        <Popup>
            Son Konum
        </Popup>
        </Marker>
    </Map>
    )
}
}
6
Cem Karakurt

Vous pouvez résoudre ce problème en ajoutant les lignes de code suivantes dans l'élément head de votre index.html.

<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.1/leaflet.css">

<style>
  body {
    padding-bottom: 30px;
  }
  h1, h2, p {
    font-family: sans-serif;
    text-align: center;
  }
  .leaflet-container {
    height: 400px;
    width: 80%;
    margin: 0 auto;
  }
</style>

Remarque: Vous pouvez modifier le CSS pour répondre à vos besoins.

6
edgar mlowe

import leaflet.css

import 'leaflet/dist/leaflet.css';

parfois, il y a deux erreurs concernant le chargement de l'image après l'ajout du fichier de dépliant. pour résoudre ces erreurs, importez marker-icon.png et marker-shadow.png dans la partie import, puis définissez le L.Marker.prototype.options.icon:

import icon from 'leaflet/dist/images/marker-icon.png';
import iconShadow from 'leaflet/dist/images/marker-shadow.png';
let DefaultIcon = L.icon({
            iconUrl: icon,
            shadowUrl: iconShadow
        });
        L.Marker.prototype.options.icon = DefaultIcon;

si la carte ne s'affiche pas, ajoutez la hauteur et la largeur (style = {{width: '100%', hauteur: '400px'}}) à la balise Map en tant que style:

<Map
center={[35.6892, 51.3890]}
style={{width: '100%',height: '400px'}}
>

entrez la description du lien ici

4
mohammad

Je suis également novice dans l'utilisation de cette bibliothèque et je n'ai pas trouvé la documentation suffisamment claire. Mais voici quelques choses que je trouve nécessaires pour que cela fonctionne.

1. Paquet react-leaflet

2. Paquet de brochure:

Soit, installez-le en utilisant npm

npm install leaflet et
import 'leaflet/dist/leaflet.css'; dans le fichier où vous utilisez Map de react-leaf.

OR

Incluez ces deux lignes dans le index.html:

<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
  integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
  crossorigin=""/>

<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
  integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
  crossorigin=""></script>

. Ajoutez ceci à un App.css ou index.css et importez le fichier: (Et c'est un must)

.leaflet-container {
  width: 100vh; 
  height: 100vh;
}

// OR ajoutez un style directement au conteneur de carte

<Map
   center={position}
   zoom={1}
   style={{ height: '100vh', width: '100vh' }}
   >
   <TileLayer .... />
</Map>

1
Bikram Karki
**Go to your react app folder my-app/public/index.html open index.html

and pest this two links in head tag
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>

</head>**



<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.1/leaflet.css">
    <style>
    #mpp {

            overflow: hidden;
        }
    </style>
    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1, shrink-to-fit=no"
    />
    <meta name="theme-color" content="#000000" />
    <!--
      manifest.json provides metadata used when your web app is installed on a
      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
    -->
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
    <!--
      Notice the use of %PUBLIC_URL% in the tags above.
      It will be replaced with the URL of the `public` folder during the build.
      Only files inside the `public` folder can be referenced from the HTML.

      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
      work correctly both with client-side routing and a non-root public URL.
      Learn how to configure a non-root public URL by running `npm run build`.
    -->
    <title>React App</title>
  </head>
  <body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root"></div>
    <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.

      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.

      To begin the development, run `npm start` or `yarn start`.
      To create a production bundle, use `npm run build` or `yarn build`.
    -->
  </body>
</html>
1
saurabh

essaye ça :

 var mapid = $(this).find('[id^=leaflet-map]').attr('id');
      var map = settings.leaflet[mapid].lMap;
      map.invalidateSize();
0
Matoeil

cela a résolu mon problème:

l'ajout à l'index.html

<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.1/leaflet.css">

<style>
  .leaflet-container {
   height: 400px;
   width: 800px;
 }
</style>

source: https://medium.com/@eugenebelkovich/map-for-react-apps-with-leaflet-365f9df82d55

0
Bruno Filgueiras