Make sure the object layer is kept in front of the data layer

This commit is contained in:
Tom Hughes 2022-02-22 18:55:34 +00:00
parent 97bb135957
commit 398a39dd0a

View file

@ -110,6 +110,10 @@ OSM.initializeBrowse = function (map) {
displayFeatureWarning(features.length, maxFeatures, addFeatures, cancelAddFeatures);
}
if (map._objectLayer) {
map._objectLayer.bringToFront();
}
dataLoader = null;
}
});