From 9fea9e469c9856f6f6a90fb970474873fe4a9dfb Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 13 Jun 2015 18:28:38 +1200 Subject: Implement selection panning --- web/app/view/map/MapController.js | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'web/app/view/map/MapController.js') diff --git a/web/app/view/map/MapController.js b/web/app/view/map/MapController.js index 0d5176d09..5cde39494 100644 --- a/web/app/view/map/MapController.js +++ b/web/app/view/map/MapController.js @@ -144,7 +144,25 @@ Ext.define('Traccar.view.map.MapController', { }, selectPosition: function(position) { - console.log(position); // DELME + if (this.currentPosition === undefined) { + this.currentPosition = new ol.Feature({ + style: this.getLineStyle(styles.map_report_route) + }); + this.getView().vectorSource.addFeature(this.currentPosition); + } + + var point = ol.proj.fromLonLat([ + position.get('longitude'), position.get('latitude') + ]); + + this.currentPosition.setGeometry(new ol.geom.Point(point)); + + var pan = ol.animation.pan({ + duration: styles.map_delay, + source: this.getView().mapView.getCenter() + }); + this.getView().map.beforeRender(pan); + this.getView().mapView.setCenter(point); }, selectDevice: function(device) { -- cgit v1.2.3