小编use*_*217的帖子

如何减少openlayers 3中Icon的大小,我正在使用bing贴图

这是我的代码:

var iconFeature = new ol.Feature({
   geometry: new ol.geom.Point(ol.proj.transform([-95.3698,29.7604], 'EPSG:4326' , 'EPSG:3857')),
   name: 'Null Island',
});

var iconStyle = new ol.style.Style({
  image: new ol.style.Icon({
    opacity: 0.75,
    src: 'flag.png',
    height:10,
    width:10,
  })
});
iconFeature.setStyle(iconStyle);
Run Code Online (Sandbox Code Playgroud)

我也试过使用锚,但是我无法减小尺寸,请帮忙

openlayers-3

6
推荐指数
1
解决办法
9567
查看次数

标签 统计

openlayers-3 ×1