如何从 geojson 格式中读取特征
how to read features out of a geojson format
我在下面发布了 geojson。我想从该 geojson 中读取该功能,以便我可以对该功能进行一些处理。
请让我知道如何读取 geojson 格式的特征
代码:
{'type': 'FeatureCollection', 'features': [{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [10.915212708803605, 50.70360315580079]}, 'properties': {'isRepresentative': 'y', 'hasPixelValueSatisfyThreshold': 'y'}}]}
这个官方例子应该对你有帮助,https://openlayers.org/en/latest/examples/geojson.html
import GeoJSON from 'ol/format/GeoJSON';
const geojsonObject = {'type': 'FeatureCollection', 'features': [{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [10.915212708803605, 50.70360315580079]}, 'properties': {'isRepresentative': 'y', 'hasPixelValueSatisfyThreshold': 'y'}}]};
const features = new GeoJSON().readFeatures(geojsonObject),
我在下面发布了 geojson。我想从该 geojson 中读取该功能,以便我可以对该功能进行一些处理。 请让我知道如何读取 geojson 格式的特征
代码:
{'type': 'FeatureCollection', 'features': [{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [10.915212708803605, 50.70360315580079]}, 'properties': {'isRepresentative': 'y', 'hasPixelValueSatisfyThreshold': 'y'}}]}
这个官方例子应该对你有帮助,https://openlayers.org/en/latest/examples/geojson.html
import GeoJSON from 'ol/format/GeoJSON';
const geojsonObject = {'type': 'FeatureCollection', 'features': [{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [10.915212708803605, 50.70360315580079]}, 'properties': {'isRepresentative': 'y', 'hasPixelValueSatisfyThreshold': 'y'}}]};
const features = new GeoJSON().readFeatures(geojsonObject),