在下面发布的代码中,我有一个样式函数,它应该呈现此处ol/Feature
文档中所述的类型特征。在那个文档中说这是一种方法。我试图在代码中调用该方法,如下所示,但我收到以下错误:getKeys()
ERROR TypeError: feature.getKeys is not a function
请让我知道如何getKeys
正确调用
代码:
var vectorTile = new VectorTileLayer({
source: new VectorTileSource({
format: new MVT(),
url: environment.LocalHostForTileLayerSourceAsMVTTileForZXYWS + "/{z}/{x}/{y}",
}),
style: function (feature,resolution){
console.log("feature.getKeys()",feature.getKeys())
}
});