我刚开始使用react-leaflet库并获得了一个地图来加载geoJSON图层,但是我想使用TopoJSON图层。
我知道纯正的Leaflet可以这样:https://gist.github.com/rclark/5779673/。
但是我如何使用React-Leaflet进行此操作?
修改
class MapViz extends React.Component {
getStyle() {...};
render() {
const position = [x,y];
var geoData = topojson.feature(test_topo,test_topo.objects).geometries;
return (
<Map id="my-map" center={position} zoom={10.2}>
<TileLayer ... />
<GeoJSON data={geoData} style={this.getStyle} />
</Map>
)
}
}
答案 0 :(得分:4)
基于provided TopoJSON layer,可以为react-leaflet
库引入以下用于呈现TopoJSON的组件
import React, { useRef, useEffect } from "react";
import { GeoJSON, withLeaflet } from "react-leaflet";
import * as topojson from "topojson-client";
function TopoJSON(props) {
const layerRef = useRef(null);
const { data, ...defProps } = props;
function addData(layer, jsonData) {
if (jsonData.type === "Topology") {
for (let key in jsonData.objects) {
let geojson = topojson.feature(jsonData, jsonData.objects[key]);
layer.addData(geojson);
}
} else {
layer.addData(jsonData);
}
}
useEffect(() => {
const layer = layerRef.current.leafletElement;
addData(layer, props.data);
}, []);
return <GeoJSON ref={layerRef} {...defProps} />;
}
export default withLeaflet(TopoJSON);
注意:
react-leaflet
库扩展了GeoJSON
component topojson-client
有一个依赖项,它提供了操作TopoJSON的工具用法
<Map center={[37.2756537,-104.6561154]} zoom={5}>
<TileLayer
attribution='&copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
url="https://{s}.tile.osm.org/{z}/{x}/{y}.png"
/>
<TopoJSON
data={data}
/>
</Map>
结果
这里是live demo
答案 1 :(得分:0)
这与您链接的要点非常相似。您需要将TopoJSON转换为GeoJSON,并像通常使用GeoJSON一样设置数据。 它可以在你的渲染方法
中 import topojson from 'topojson';
....
....
render() {
geoData = topojson.feature(topoData,topoData.objects).features;
return (
<LeafletMap>
<GeoJson
data={geoData}
/>
</LeafletMap>
)
}