如果我在地图上添加徽标
var map = new ol.Map({
view: new ol.View({
center: [0, 0],
zoom: 1
}),
layers: [
new ol.layer.Tile({
source: new ol.source.MapQuest({layer: 'osm'})
})
],
target: 'map',
logo: true
});
如何将徽标的位置更改为左上角并更改其大小?
答案 0 :(得分:0)
我从未尝试过这个,但according to the documentation你可以传递logo options而不是布尔值。
在徽标选项中,有偏移,样式,位置等属性,这些属性应该有助于实现您的要求。
使用JavaScript对象进行选项,因此逗号分隔键/值对{ style : ..., offset: ...}
。