我很早就在使用 OpenLayers 3。十天前,我用 OpenLayers 3 完成了一个包含地图的应用程序。但是今天我检查了应用程序,样式不再适用于KML
. 有人有什么主意吗?
var layer1 = new ol.layer.Vector({
source: new ol.source.KML(({
url: '#',
projection: 'EPSG:900913'
}))
, style: [new ol.style.Style({
stroke: new ol.style.Stroke({ color: 'black', width: 10 })
})]
});