task_25066 #15

Merged
francesco.mangiacrapa merged 18 commits from task_25066 into master 2023-06-09 10:37:46 +02:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit d1ec08c70f - Show all commits

View File

@ -26,11 +26,11 @@ public class LayerOrder {
static {
LAYER_OFFSET.put(LAYER_TYPE.BASE_MAP, 0);
LAYER_OFFSET.put(LAYER_TYPE.CUSTOM_WMS_DETAIL, 70);
LAYER_OFFSET.put(LAYER_TYPE.BASE_WMS, 140);
LAYER_OFFSET.put(LAYER_TYPE.WMS_DETAIL, 210);
LAYER_OFFSET.put(LAYER_TYPE.VECTOR, 320);
LAYER_OFFSET.put(LAYER_TYPE.BASE_MAP, 0); //Base OL or MapBox
LAYER_OFFSET.put(LAYER_TYPE.CUSTOM_WMS_DETAIL, 70); //WMS custom Overlay. Es. Layer "Limiti Amministrativi"
LAYER_OFFSET.put(LAYER_TYPE.BASE_WMS, 140); // Index layers (i.e. centroids for UCD)
LAYER_OFFSET.put(LAYER_TYPE.WMS_DETAIL, 210); //Layer/s belonging to a Project (materialized layers. Ex. "Posizionamento Scavo")
LAYER_OFFSET.put(LAYER_TYPE.VECTOR, 320); //Vector layer to show other info. Ex. Pointer with coordinates (x,y) in the Light OL Map.
}
/**