我想使用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);
}