我正在尝试更改我的 openlayers 地图上的刻度标签的颜色,但我无法使其工作。这是我正在做的事情:
this.Graticule = new OpenLayers.Control.Graticule({
numPoints: 2,
labelled: true,
lineSymbolizer:{strokeColor: "#ffffff", strokeWidth: 1, strokeOpacity: 0.2},
labelSymbolizer:{strokeColor: "#ffffff", strokeWidth: 1, strokeOpacity: 0.7}
});
颜色线在变化,但我总是得到黑色标签。
有人可以在这里帮助我吗?
谢谢。