如何在组件angularjs中导入ol.map.addlayer

时间:2017-09-20 20:35:23

标签: angularjs

我想使用ol.map.addlayer从geoserver添加图层。但它出现了一个错误,addlayer未定义。我知道我想要使用的所有功能都需要从特定文件中导入,但我找不到addlayer的位置。

我如何导入addlayer?

  if (this.routeLayer != null){
  this.map.removeLayer(this.routeLayer)}
  else{
  this.routeLayer = new Vector({
    map: this.map,
    source: this.routeSource,

    style: new Style({
      stroke: new Stroke({
        color: 'rgba(0, 0, 255, 0.5)',
        width: 8
      })
    })
  });

  // add the new layer to the map
  this.map.addlayer(this.routeLayer);

}

0 个答案:

没有答案