OpenLayers 3获取矢量特征/属性而不添加要映射的图层

时间:2016-03-02 15:08:35

标签: javascript openlayers-3

我需要访问矢量图层的属性,因为它包含我将在我的OL3实现中逻辑使用的信息。

我可以这样做:

votesSum

请注意,我设置了visible:false。看来我需要将图层添加到地图中,以便使用以下内容访问属性:

//Adding local layer
var layer_to_return = new ol.layer.Vector({
       source: new ol.source.Vector({
         url: "/positional_data/Flight_Test_Position_Data_GEOJSON_point.geojson",
          format: new ol.format.GeoJSON(),
          style:Custom_Style,
          visible:false
    })
});

map.addLayer(layer_to_return);

如果我不包含 map.addLayer(layer_to_return)语句,则上述操作不起作用,它只是不会运行整个更改事件。

如果我取消更改事件处理程序,则时间变量返回空白,可能是因为图层尚未加载。

有没有办法在不将图层添加到地图的情况下访问图层属性?

1 个答案:

答案 0 :(得分:2)

只需发出一个get-get请求来获取你的json文件,然后使用ol.format.GeoJSON类来解析这些功能。这样的事情应该可以帮到你。

$.ajax('/positional_data/Flight_Test_Position_Data_GEOJSON_point.geojson', {
        type: 'GET'            
  }).done(function (geojson) {
//HERE IS YOUR KEY CLASS
var features = new ol.format.GeoJSON().readFeatures(geojson);
//NOW YOU CAN ITERATE THROUGH YOUR FEATURES AND GET ATTR
//LIKE
for (var i=0;i<features.length;i++){
var attr = features[i].get('attr');
}
}).fail(function (jqXHR, textStatus) {
 alert('geojson fail to load');
});)