使用OpenLayers 5

时间:2019-04-01 11:32:30

标签: icons openlayers point openlayers-5

我正在尝试使用OpenLayers 5在地图上添加图标。

我尝试遵循该网站上的Openlayers示例,但没有成功(https://openlayers.org/en/latest/examples/icon.html

我认为问题可能出在样式上,因为当我将其从地图项中删除时,地图上会显示一个点,但是当我尝试向该点添加样式(它是图标)时,什么也没有在地图上显示。

我在下面发送我使用的代码:

import Point from 'ol/geom/Point'
import { Icon, Style } from 'ol/style.js'
// or
// import Icon from 'ol/style/Icon'
// import Style from 'ol/style/Style'

...

const vectorMarkerSource = new VectorSource()

const vectorMarkerGroup = new VectorLayer({
  source: vectorMarkerSource
})

...

this.olmap = new Map({
    target: 'map',
    layers: [
      baseLayerGroup, vectorMarkerGroup
    ],
    view: this.view
})

...

var iconFeature = new Feature({
    geometry: new Point([0, 0]),
    projection: 'EPSG:4326'
})

// I've already tried the two options of 'src'
var iconStyle = new Style({
    image: new Icon(/** @type {module:ol/style/Icon~Options} */ ({
        anchor: [0.5, 46],
        anchorXUnits: 'fraction',
        anchorYUnits: 'pixels',
        src: '@/assets/img/marker/marker-blue.png'
        // src: '../../assets/img/marker/marker-blue.png'
    }))
})

iconFeature.setStyle(iconStyle)

vectorMarkerSource.addFeature(iconFeature)

谢谢。

1 个答案:

答案 0 :(得分:0)

我偶然发现了一个解决方案。我正在阅读另一个代码来解决另一个问题,创建者使用以下方法在该代码上插入了一个图标。

import markerIconBlue from '@/assets/img/marker/marker-icon-2x-blue.png'

var iconStyle = new Style({
    image: new Icon(/** @type {module:ol/style/Icon~Options} */ ({
        anchor: [0.5, 46],
        anchorXUnits: 'fraction',
        anchorYUnits: 'pixels',
        src: markerIconBlue
    }))
})

幸运的是,这种方法对我有用,希望对其他人有所帮助。