无法以编程方式向图层添加功能

时间:2016-02-16 09:51:59

标签: javascript openlayers-3

我的地图附有点击事件。在这个点击事件中,我触发一个功能,该功能应该为地图添加一个功能,但现在没有任何反应。我试过这样:

function boo (map, layer){
    var source = layer.getSource();
    var thing = new ol.geom.Polygon( [[
       ol.proj.transform([-16,-22], 'EPSG:4326', 'EPSG:3857'),
       ol.proj.transform([-44,-55], 'EPSG:4326', 'EPSG:3857'),
       ol.proj.transform([-88,75], 'EPSG:4326', 'EPSG:3857')
    ]]);
    var featurething = new ol.Feature({
        name: "Thing",
        geometry: thing,
        style: function() {
            console.log("Never see this text");
            return new ol.style.Style({
               fill: new ol.style.Fill({
                  color: "rgba(192,192,192,1)"
               }),
               stroke: new ol.style.Stroke({
                  color: "rgba(192,192,192,1)",
                  width: 10
               })
           })
        }
     });
     source.addFeature( featurething );
     // see no error messages, but still no feature is added to the map
}

1 个答案:

答案 0 :(得分:3)

  

这是一个OL3错误

没那么快。

你的函数的第一个参数应该是click事件。另一个错误:ol.Feature构造函数中没有style参数。

创建后设置要素样式。所以:

featurething.setStyle(some_style_or_a_function);