OpenLayers-加载Geojson数据

文章介绍了如何使用OpenLayers库中的Vector源和Vector层加载GeoJSON数据,特别是处理网络GeoJSON服务的异步加载,通过featuresloadend事件获取要素并进行遍历操作。
摘要由CSDN通过智能技术生成

 示例代码:

    var geojsonSource = new ol.source.Vector({
            url: './features.json',
            format: new ol.format.GeoJSON(),
        });

        var geojsonLayer = new ol.layer.Vector({
            name: 'geojson图层',
            source: geojsonSource,
            style: new ol.style.Style({
                fill: new ol.style.Fill({
                    color: 'rgba(10, 20, 255, 0.1)',
                })
            }),
            zIndex: 3,
        });
        map.addLayer(geojsonLayer);

这里的url地址可以是本地geojson文件,也可以是网络geojson格式的数据服务。加载完成后可以对数据要素进行遍历

            pointFeatureSource.getFeatures().forEach(feature => {
               console.log(feature);
            })

值得注意的是,加载网络服务的行为(如geoserver发布的数据服务)属于异步,不能直接获得要素。

下面代码是我解决此问题的一种思路,

通过VectorSource的featuresloadend事件(在要素完成加载时触发)

    pointFeatureSource.on('featuresloadend', function (e) {
        e.features.forEach((item) => {
           console.log(item)
        })
    });
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

giser__Z

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值