Move aircraft icons above aircraft trails.

This commit is contained in:
Oliver Jowett 2016-07-03 14:54:36 +01:00
parent abab5f5440
commit ae6a7acb67

View file

@ -386,8 +386,6 @@ function initialize_map() {
layers.push(new ol.layer.Group({
title: 'Overlays',
layers: [
iconsLayer,
new ol.layer.Vector({
title: 'Site position and range rings',
source: new ol.source.Vector({
@ -401,6 +399,8 @@ function initialize_map() {
features: PlaneTrailFeatures,
})
}),
iconsLayer
]
}));