【发布时间】:2015-03-05 21:25:10
【问题描述】:
这是我的代码:
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);
我也尝试过使用锚点,但我无法减小大小,请帮助
【问题讨论】:
标签: openlayers-3