在小叶矩形内添加文本

时间:2018-06-14 11:11:53

标签: reactjs leaflet react-leaflet

我使用以下代码在leaflet地图中创建一个矩形。

const rectangles = [[51.49, -0.08], [51.5, -0.06]]   

<Rectangle key={key} bounds={rectangle} color="green">

</Rectangle>

我想在矩形内部添加一个文本,就像矩形的标签有没有办法做到这一点?

我正在使用react-leaflet库。

2 个答案:

答案 0 :(得分:0)

请参阅下面的代码,该代码使用其中带有工具提示的矩形

  

     

{zoneLabel}

<Rectangle key={key} bounds={coordinates}>
</Rectangle>
     

答案 1 :(得分:0)

要在地图上书写,我们可以使用Leaflet库中的DivIcon添加到React-Leaflet Marker组件中。

使用HTML创建DivIcon

DivIcon是一个图标,可以包含HTML而不是图像。我们将导入Leaflet库,并使用所需的文本创建一个DivIcon

import L from 'leaflet';

const text = L.divIcon({html: 'Your HTML text here'});

将DivIcon添加到标记

创建DivIcon后,我们将其添加到放置在Polygon中心的标记中。

import React from 'react';
import L from 'leaflet';
import { Marker, Polygon } from 'react-leaflet';

const PolygonWithText = props => {
  const center = L.polygon(props.coord).getBounds().getCenter();
  const text = L.divIcon({html: props.text});

  return(
    <Polygon color="blue" positions={props.coords}>
      <Marker position={center} icon={text} />
    </Polygon>
  );
}

export default PolygonWithText

将标记添加到地图

最后,我们将PolygonMarkerDivIcon添加到Map

import React, { Component } from 'react';
import {Map, TileLayer} from 'react-leaflet';
import PolygonWithText from './PolygonWithText';

class MyMap extends Component {
  render () {
    return (
      <Map center={[20.75, -156.45]} zoom={13}>
        <TileLayer
          attribution='&amp;copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
          url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" />
        <PolygonWithText text="MyText" coords={[...]} />
      </Map>
  }
}

export default MyMap;