我使用以下代码在leaflet
地图中创建一个矩形。
const rectangles = [[51.49, -0.08], [51.5, -0.06]]
<Rectangle key={key} bounds={rectangle} color="green">
</Rectangle>
我想在矩形内部添加一个文本,就像矩形的标签有没有办法做到这一点?
我正在使用react-leaflet库。
答案 0 :(得分:0)
请参阅下面的代码,该代码使用其中带有工具提示的矩形
{zoneLabel}
<Rectangle key={key} bounds={coordinates}> </Rectangle>
答案 1 :(得分:0)
要在地图上书写,我们可以使用Leaflet库中的DivIcon添加到React-Leaflet Marker组件中。
DivIcon
是一个图标,可以包含HTML而不是图像。我们将导入Leaflet
库,并使用所需的文本创建一个DivIcon
。
import L from 'leaflet';
const text = L.divIcon({html: 'Your HTML text here'});
创建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
最后,我们将Polygon
,Marker
和DivIcon
添加到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='&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;