我正在学习extjs6 + openlayers3。 大多数教程都来自以前的版本,所以我找不到解决方案。这是我的工作代码。
Ext.application({
name : 'MyApp',
launch : function() {
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
})
],
target: 'map',
view: new ol.View({
center: [0, 0],
zoom: 2
})
});
}
});
问题是:如何为此添加一些功能? 例如:
map.addControl(new ol.Control.PanZoomBar());