0

Show marker group display names

This commit is contained in:
Nicolas F
2018-05-06 16:53:32 +02:00
parent 84b52326dc
commit 614663f601

View File

@@ -197,7 +197,7 @@ overviewer.util = {
} }
// reset the markers control with the markers for this layer // reset the markers control with the markers for this layer
if (ovconf.marker_groups.length > 0) { if (ovconf.marker_groups) {
console.log("markers for", ovconf.marker_groups); console.log("markers for", ovconf.marker_groups);
markerCtrl = L.control.layers( markerCtrl = L.control.layers(
[], [],
@@ -257,7 +257,7 @@ overviewer.util = {
overviewer.collections.mapTypes[obj.world][obj.name] = myLayer; overviewer.collections.mapTypes[obj.world][obj.name] = myLayer;
} }
obj.marker_groups = []; obj.marker_groups = {};
if (overviewer.collections.haveSigns == true) { if (overviewer.collections.haveSigns == true) {
// if there are markers for this tileset, create them now // if there are markers for this tileset, create them now
@@ -278,7 +278,7 @@ overviewer.util = {
icon: icon icon: icon
})); }));
} }
obj.marker_groups.push(marker_group); obj.marker_groups[marker_entry.displayName] = marker_group;
} }