extjs + openlayers添加简单的功能

时间:2015-09-18 10:51:57

标签: javascript extjs html-lists gis openlayers-3

我正在学习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());

0 个答案:

没有答案