我正在使用最新的CDN版本的OpenLayers,而我正努力在地图上添加标记。到目前为止,这就是我的事....(出于客户隐私的考虑,一些变量已被省略)
var map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
})
],
view: new ol.View({
center: ol.proj.fromLonLat([long, lat]),
zoom: 14
})
});
//Adding a marker on the map
var marker = new ol.Feature({
geometry: new ol.geom.Point(
ol.proj.fromLonLat([long, lat])
),
name: name,
});
var iconStyle = new Style({
image: new Icon(({
anchor: [0.5, 46],
anchorXUnits: 'fraction',
anchorYUnits: 'pixels',
src: icon_src
}))
});
marker.setStyle(iconStyle);
var vectorSource = new ol.source.Vector({
features: [marker]
});
var markerVectorLayer = new ol.layer.Vector({
source: vectorSource,
});
map.addLayer(markerVectorLayer);
<div id="map" class="map" style="width:1022px;height:240px;margin-top:15px;"></div>
我在控制台中收到“样式未定义”,然后,如果我尝试导入如示例中所示的样式,它会提到如何仅在模块顶部进行导入...我认为需要webpack或类似的东西,我很确定我的网站没有运行它。我只需要一个非常基本的地图标记,例如红色的Google Maps图标,就不用花哨了。
答案 0 :(得分:1)
CDN版本的OL5的语法与OL4相同
var iconStyle = new ol.style.Style({
image: new ol.style.Icon(({
用书签标记第4版API可能会很有用,但在进行其他更改http://openlayers.org/en/v4.6.5/apidoc/index.html时始终与第5版进行交叉检查