码迷,mamicode.com
首页 > 其他好文 > 详细

在react中使用leaflet

时间:2019-10-11 10:50:08      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:xtend   etl   tag   set   添加   change   exp   keyword   val   

 

如果有样式问题,检查是否引入leaflet.css,地图容器是否标注宽高

 

引入方式:

import React from ‘react‘;
import L from ‘leaflet‘;

class Map extends React.Component {
  componentDidMount() {
    // create map
    this.map = L.map(‘map‘, {
      center: [49.8419, 24.0315],
      zoom: 16,
      layers: [
        L.tileLayer(‘http://{s}.tile.osm.org/{z}/{x}/{y}.png‘, {
          attribution: ‘&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors‘
        }),
      ]
    });
  }

  render() {
    return <div id="map"></div>
  }
}

export default Map;



添加标记
componentDidMount() {
  ...
  // add marker
  this.marker = L.marker(this.props.markerPosition).addTo(this.map);
}



更新标记
componentDidUpdate({ markerPosition }) {
  // check if position has changed 
  if (this.props.markerPosition !== markerPosition) {
    this.marker.setLatLng(this.props.markerPosition);
  }
}

添加标记层
componentDidMount() {
  ...
  // add layer
  this.layer = L.layerGroup().addTo(this.map);
}



在react中使用leaflet

标签:xtend   etl   tag   set   添加   change   exp   keyword   val   

原文地址:https://www.cnblogs.com/jojoray/p/11652486.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!