我正在MVVM架构中使用Extjs 6.0
和OpenLayers 3.6.0
开发一个web gis。我想将ol.map
放到Ext.panel.Panel
。该项目的主要观点如下:
Ext.define('MyApp2.view.main.Main', {
extend: 'Ext.container.Container',
requires: [
'MyApp2.view.main.MainController',
'MyApp2.view.main.MainModel'
],
xtype: 'app-main',
controller: 'main',
viewModel: {
type: 'main'
},
layout: {
type: 'border'
},
items: [{
xtype: 'panel',
bind: {
title: '{name}'
},
region: 'west',
html: 'its me! - West Panel',
width: 125,
minWidth: 100,
maxWidth: 250,
}, {
xtype: 'panel',
region: 'center',
collapsible: false,
html: '<div id="map" class="map"></div>',
listeners: {
beforerender: 'beforerender',
afterrender: 'afterrender'
}
}]
});
首先我使用panel
配置html
呈现<div id="map" class="map"></div>
,然后在afterrender
监听器中初始化ol.map
,如下所示:
Ext.define('MyApp2.view.main.MainController', {
extend: 'Ext.app.ViewController',
requires: [
'Ext.window.MessageBox'
],
alias: 'controller.main',
afterrender: function() {
map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Tile({
title: "Global Imagery",
source: new ol.source.TileWMS({
url: 'http://localhost:8080/geoserver/world/wms?service=WMS',
params: {LAYERS: 'world:worldRaster', VERSION: '1.1.1'}
})
})
],
view: new ol.View({
projection: 'EPSG:4326',
center: [35, 41],
zoom: 4
})
});
},
beforerender: function(){
console.log("Salam Bar Mahdi");
}
});
代码没有给出任何错误,但是当我运行它时,一切都很好,除非我想放大地图,它会缩放另一个地方。见下图:
此错误保持稳定,直到index.html
文件中我定义了跟随css
:
<style>
.map {
height: 600px;
width: 600px;
}
</style>
此css
将ol.map
放入600x600
框,但我希望ol.map
适合Ext.panel.Panel
。
我该怎么做?
答案 0 :(得分:1)
您可以按照this answer on GIS Stack Exchange中的建议使用版本4.2上的boxready
事件Ext.Container
,其中提出了以下代码:
th.items = [
Ext.create('Ext.Component', {
initComponent: function () {
var me = this;
th.mapContainerId = me.id;
me.on("boxready", function () {
th.initMap();
});
me.on("resize", function () {
if (th.mapInst) {
th.mapInst.updateSize();
}
});
me.callParent(arguments);
}
})
];
答案 1 :(得分:0)
ol.map
类必须位于某个高度和宽度组件中。唯一需要的是初始ol.map
与afterlayout
事件。