OpenLayers自动为线要素设置样式

时间:2018-11-30 08:08:21

标签: openlayers openlayers-5

有什么方法可以自动设置从GeoJSON文件读取并用作矢量图层源的每个要素的样式?我已经附上了一张屏幕截图:这些混乱的绿线功能不仅令人困惑。每行随机分配不同的颜色会很好。 感谢您的帮助!

enter image description here

编辑:添加了代码

在这里,您找到了我用于此表示法的相关代码。您可以看到我将green定义为LineString的颜色,但是我想知道如何自动为LineStrings分配不同的颜色。

// load GeoJSON with > 2000 Line Features
var fullGeoJSON = require("./data/datafile.json");
// Style function to be called in Layer definition, uses Styles defined in var styles
var styleFunction = function (feature) {
    return styles[feature.getGeometry().getType()];
};
// Define Style (one for all)
var styles = {
    "Point": new Style({
        image: image
    }),
    "LineString": new Style({
        stroke: new Stroke({
            color: "green",
            width: 3
        })
    }),
};
// Define Source
var geoSource = new VectorSource({
    features: new GeoJSON().readFeatures(fullGeoJSON, {
        featureProjection: "EPSG:3857"
    })
});
// Define Layer
var baseLayer = new VectorLayer({
    source: geoSource,
    style: styleFunction
});
// Define Map
const mainMap = new Map({
    target: "map-container",
    layers: [baseLayer],
    view: initialView
});

1 个答案:

答案 0 :(得分:0)

我想通了,这要归功于您评论中的所有帮助:

  1. 将chroma.js加载到您的项目中(我使用npm和webpack,并在使用npm安装后,我需要这样的色度:var chroma = require("chroma-js");
  2. 定义随机函数:

    function randomize() {
        geoSource.forEachFeature(function (feature) {
            var scale = chroma.scale(["#731422", "#1CBD20", "#1CA1FF"]).mode("lch").colors(300); // Define color scale
            var randomColor = scale[Math.floor(Math.random() * scale.length)]; // select a random color from color scale
            var randomStyle = new Style({
                stroke: new Stroke({
                    color: randomColor,
                    width: 5
                })
            }); // define a style variable
            feature.setStyle(randomStyle); // set feature Style
        });
    }
    
  3. 每当图层更改时调用一次该函数:randomize();

  4. “定义”层,这次没有一种样式:

    var baseLayer = new VectorLayer({
        source: geoSource
    });
    

enter image description here