2

首先,我是 Openlayers/JS 整体上的新手,并且对一般的编程相当缺乏经验,因此我的代码可能存在其他我不知道的问题。

我正在使用最新版本的 Openlayers (5.3.0)。

我的程序目前通过 Ajax 传递 GeoJson 格式的数据以显示在 Openlayers 地图上。它为要显示的要素创建地图、视图和图层。当我按下页面上的“开始”按钮时,这些功能已成功加载到地图上。在我的情况下,这些特征只是使用 png 标记进行可视化的具有纬度/经度的简单点。GeoJson 在 C# 中看起来像这样,然后被序列化并发送到我页面上的 JS 进行反序列化:

{{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -1.549077,
          53.800755
        ]
      },
      "properties": {
        "GPSKey": 1,
        "Latitude": 53.800755,
        "Longitude": -1.549077,
        "TimeAdded": "2019-01-15T12:10:16",
        "IconPath": "pinred.png"
      },
      "ID": 1,
      "IconPath": null
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -1.545077,
          53.800755
        ]
      },
      "properties": {
        "GPSKey": 2,
        "Latitude": 53.800755,
        "Longitude": -1.545077,
        "TimeAdded": "2019-01-15T12:10:16",
        "IconPath": "pinred.png"
      },
      "ID": 2,
      "IconPath": null
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -1.524043,
          53.773222
        ]
      },
      "properties": {
        "GPSKey": 3,
        "Latitude": 53.773222,
        "Longitude": -1.524043,
        "TimeAdded": "2019-01-15T12:10:16",
        "IconPath": ""
      },
      "ID": 3,
      "IconPath": null
    }
  ]
}}

JS接收到上面的序列化后,使用这段代码添加到图层中查看:

var geojsonFormat = new ol.format.GeoJSON({
        dataProjection: "EPSG:4326",
        featureProjection: "EPSG:3857"
    });//creates a format definition

    jsonDecoded = JSON.parse(result); /

    if (jsonDecoded.features.length > 0) {
        for (var i = 0; i < jsonDecoded.features.length; i++) {
            vectorSource.addFeature(geojsonFormat.readFeature(jsonDecoded.features[i], { featureProjection: "EPSG:3857" }));

        }

    }/

它被添加到的矢量图层如下所示:

var vectorLayer = new ol.layer.Vector({
    source: vectorSource,
    style: iconStyleFunc()
});

iconStyleFunc() 看起来像这样:

function iconStyleFunc() {

    var zIndex = 1;

    var iconName = null;

    if (iconName == null) {
        iconName = "pinother.png"
    };


    iconStyle = [new ol.style.Style({
        image: new ol.style.Icon(({
            anchor: [0.5, 36], 
            anchorXUnits: "fraction",
            anchorYUnits: "pixels",
            opacity: 1,
            src: "images/" + iconName,  
            zIndex: zIndex
        })),
        zIndex: zIndex
    })];
return iconStyle;

这适用于使用图标“pinother.png”为所有功能设置样式。当我按下按钮时,我在地图上显示点没有问题。

我想做的是根据每个功能的GeoJson“iconpath”属性中的图标路径应用样式,这样任何具有“pinred.png”的功能都会使用它而不是默认的“pinother.png”,等等,我将来可能需要添加各种图标。

我不确定如何阅读每个功能的此属性以及如何在样式功能中最好地实现它。我设想的方式是使用 iconStyleFunc() 遍历功能,读取每个功能的 IconPath 属性,将该值附加到 iconStyleFunc() 中的“src/images/”路径并适当地设置功能的样式。

4

1 回答 1

2

使用 style 函数的特征参数,您可以获得特征的属性

function iconStyleFunc(feature) {

    var zIndex = 1;

    var iconName = feature.get("IconPath") || "pinother.png";

    iconStyle = [new ol.style.Style({
        image: new ol.style.Icon(({
            anchor: [0.5, 36], 
            anchorXUnits: "fraction",
            anchorYUnits: "pixels",
            opacity: 1,
            src: "images/" + iconName,  
            zIndex: zIndex
        })),
        zIndex: zIndex
    })];
return iconStyle;
于 2019-01-23T12:07:38.673 回答