diff options
Diffstat (limited to 'web/app/view/map')
-rw-r--r-- | web/app/view/map/MapController.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/app/view/map/MapController.js b/web/app/view/map/MapController.js index 9e009218e..8b9a34b28 100644 --- a/web/app/view/map/MapController.js +++ b/web/app/view/map/MapController.js @@ -48,7 +48,12 @@ Ext.define('Traccar.view.map.MapController', { var i; for (i = 0; i < data.length; i++) { - + + // TODO check if exists and update + var store = Ext.getStore('LiveData'); + store.add(Ext.create('Traccar.model.Position', data[i])); + //store.commitChanges(); need for update? + var geometry = new ol.geom.Point(ol.proj.fromLonLat([ data[i].longitude, data[i].latitude |