Mercurial > lada > lada-client
view app/view/panel/Map.js @ 1434:ff5a402cd63d tip
set version to 2.7-SNAPSHOT for default branch
author | Marco Lechner, Bundesamt fuer Strahlenschutz, SW 2.1 <mlechner@bfs.de> |
---|---|
date | Fri, 07 Apr 2017 11:32:26 +0200 |
parents | e95ac7584c2c |
children |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /** * This is the MapPanel. * It uses OpenLayers to display the map */ Ext.define('Lada.view.panel.Map', { extend: 'Ext.panel.Panel', alias: 'widget.map', name: 'map', record: null, locationRecord: null, externalOrteStore: false, /* * if externalOrteStore is true, the mappanel will not load the orte * store on it's own; it expects an already loaded store instead */ /** * @cfg * OpenLayers map options. * Please note that TMS zoom levels are roughly as this: * 7 = 1:4000000 14 = 1:35000 */ mapOptions: { maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34), numZoomLevels: 15, projection: 'EPSG:3857', displayProjection: new OpenLayers.Projection('EPSG:4326') }, /** * @private * Initialize the map panel. */ initComponent: function() { var id = Ext.id(); this.layers = [ new OpenLayers.Layer.TMS( 'Standard' + id, 'http://www.imis.bfs.de/mapcache/tms/', { layername: 'osm_bfs_google@GoogleMapsCompatible', isBaseLayer: true, displayInLayerSwitcher: false, type: 'png', visibility: true, projection: 'EPSG:3857' }) ]; this.map = new OpenLayers.Map('map_' + id, { controls: [], tileManager: null, zoomMethod: null, // initializing with view centered on germany center: new OpenLayers.LonLat(1160000,6694000) }); this.map.setOptions(this.mapOptions); this.map.addLayers(this.layers); this.map.zoomTo(6); var keyControl = new OpenLayers.Control.KeyboardDefaults(); this.map.addControl(keyControl); keyControl.activate(); this.bodyStyle = {background: '#fff'}; this.initData(); this.addEvents('featureselected'); this.callParent(arguments); }, /** * Initialise the Data and Create an * Array of OpenLayers.Layer objects. */ initData: function() { var me = this; if (!this.externalOrteStore) { this.locationStore = Ext.data.StoreManager.get('orte'); this.addLocations(this.locationStore); } }, /** * Select a feature by record (a Lada.model.Ort) and zoom to this Ort */ selectFeature: function(model, record) { if (!record.get('id') || record.get('id') === '') { return; } var feature = this.featureLayer.getFeaturesByAttribute('id', record.get('id'))[0]; if (!feature) { return; } this.map.setCenter( new OpenLayers.LonLat(feature.geometry.x, feature.geometry.y)); this.map.zoomTo(12); if (this.selectedFeatureLayer) { this.selectControl.unselectAll(); var prev = this.selectedFeatureLayer.features[0]; if (prev){ this.featureLayer.addFeatures([prev.clone()]); } this.selectedFeatureLayer.removeAllFeatures(); this.selectedFeatureLayer.addFeatures(feature.clone()); this.featureLayer.removeFeatures([feature]); this.selectedFeatureLayer.refresh({force: true}); this.featureLayer.refresh({force: true}); } else { this.selectControl.unselectAll(); this.selectControl.select(feature); } }, activateDraw: function() { if (!this.drawPoint) { this.drawPoint = new OpenLayers.Control.DrawFeature(this.featureLayer, OpenLayers.Handler.Point); this.map.addControl(this.drawPoint); this.drawPoint.events.register('featureadded', this, this.featureAdded); } this.drawPoint.activate(); }, featureAdded: function(features) { features.feature.geometry.transform(new OpenLayers.Projection('EPSG:3857'), new OpenLayers.Projection('EPSG:4326')); var parent = this.up('ortszuordnungwindow') || this.up('ortpanel'); Ext.create('Lada.view.window.Ortserstellung', { record: Ext.create('Lada.model.Ort',{ koordXExtern: features.feature.geometry.x, koordYExtern: features.feature.geometry.y, kdaId : 4, ortTyp: 1 }), parentWindow: parent }).show(); this.drawPoint.deactivate(); }, addLocations: function(locationStore) { var me = this; locationFeatures = []; // Iterate the Store and create features from it for (var i = 0; i < locationStore.count(); i++) { var feature = new OpenLayers.Feature.Vector( new OpenLayers.Geometry.Point( locationStore.getAt(i).get('longitude'), locationStore.getAt(i).get('latitude') ), { id: locationStore.getAt(i).get('id'), bez: locationStore.getAt(i).get('ortId') } ); feature.geometry.transform(new OpenLayers.Projection('EPSG:4326'), new OpenLayers.Projection('EPSG:3857')); locationFeatures.push(feature); } // Create a new Feature Layer and add it to the map if (!this.featureLayer) { this.featureLayer = new OpenLayers.Layer.Vector( 'alle Messpunkte', { styleMap: new OpenLayers.StyleMap({ 'default': new OpenLayers.Style(OpenLayers.Util.applyDefaults({ externalGraphic: 'resources/lib/OpenLayers/img/marker-green.png', graphicOpacity: 1, pointRadius: 10, label: '${bez}', labelAlign: 'rt', fontColor: 'green', fontWeight: 'bold' }, OpenLayers.Feature.Vector.style['default'])), 'select': new OpenLayers.Style({ externalGraphic: 'resources/lib/OpenLayers/img/marker-blue.png', pointRadius: 12, label: '${bez}', labelAlign: 'rt', fontColor: 'blue', fontWeight: 'bold' }) }), projection: new OpenLayers.Projection('EPSG:3857') }); this.selectControl = new OpenLayers.Control.SelectFeature(this.featureLayer, { clickout: false, toggle: false, multiple: false, hover: false, onSelect: me.selectedFeature, layers: [me.featureLayer], scope: me }); this.map.addControl(this.selectControl); this.selectControl.activate(); } this.featureLayer.removeAllFeatures(); this.featureLayer.addFeatures(locationFeatures); if (this.selectedFeatureLayer && this.selectedFeatureLayer.features && this.selectedFeatureLayer.features.length > 0){ var oldSelection = this.selectedFeatureLayer.features[0].data.id; var feature = this.featureLayer.getFeaturesByAttribute('id', oldSelection)[0]; this.selectControl.unselectAll(); this.selectedFeatureLayer.removeAllFeatures(); this.selectedFeatureLayer.addFeatures(feature.clone()); this.featureLayer.removeFeatures([feature]); this.selectedFeatureLayer.refresh({force: true}); this.featureLayer.refresh({force: true}); } this.map.addLayer(this.featureLayer); }, /** * @private * Override to display and update the map view in the panel. */ afterRender: function() { this.superclass.afterRender.apply(this, arguments); this.map.render(this.body.dom); this.map.addControl(new OpenLayers.Control.Navigation()); this.map.addControl(new OpenLayers.Control.PanZoomBar()); this.map.addControl(new OpenLayers.Control.ScaleLine()); }, /** * Forward OpenlayersEvent to EXT */ selectedFeature: function(feature) { this.fireEvent('featureselected', this, arguments); this.featureLayer.refresh({force: true}); if (this.selectedFeatureLayer) { this.selectedFeatureLayer.refresh({force: true}); } }, beforeDestroy: function() { if (this.map) { this.map.destroy(); } delete this.map; this.callParent(arguments); }, /** * @private * Override to resize the map and reposition the logo. */ onResize: function() { this.superclass.onResize.apply(this, arguments); this.map.updateSize(); } });