Я пытаюсь добавить LayersControll на карту response-lealfet.
Я добавил значок управления слоями
но при наведении он пуст.
Существует также пример кода
<Map center={this.props.configuration.center}
zoom={this.props.configuration.zoom}
minZoom={this.props.configuration.minZoom}
maxZoom={this.props.configuration.maxZoom}
attributionControl={false}
doubleClickZoom={false}
zoomControl={false}
editable={true}
onZoomEnd={this.props.configuration.onZoomEnd}
onZoomStart={this.props.configuration.onZoomStart}
bounceAtZoomLimits={false}
dragging={true}>
<FeatureGroup>
<LayersControl
baseLayers={{
url: TILES_URL,
id: 'MapID'}}
>
<TileLayer url={TILES_URL}/>
<ZoomControl position="topright" />
<Marker position={[0, 0]}>
<Popup>
<span>Great marker!</span>
</Popup>
</Marker>
</LayersControl>
{this.props.children}
</FeatureGroup>
</Map>