Merge pull request #345 from mikeprimm/master
Fix nesting on residence subzones
This commit is contained in:
commit
78d0dbeb10
1 changed files with 9 additions and 9 deletions
|
|
@ -17,6 +17,7 @@ regionConstructors['Residence'] = function(dynmap, configuration) {
|
||||||
})));
|
})));
|
||||||
|
|
||||||
boxLayers.push(boxLayer);
|
boxLayers.push(boxLayer);
|
||||||
|
});
|
||||||
$.each(residence.Subzones, function(szname, subzone) {
|
$.each(residence.Subzones, function(szname, subzone) {
|
||||||
$.each(subzone.Areas, function(name2, area2) {
|
$.each(subzone.Areas, function(name2, area2) {
|
||||||
var subzoneLayer = configuration.createBoxLayer(area2.X1, area2.X2, area2.Y1, area2.Y2, area2.Z1, area2.Z2);
|
var subzoneLayer = configuration.createBoxLayer(area2.X1, area2.X2, area2.Y1, area2.Y2, area2.Z1, area2.Z2);
|
||||||
|
|
@ -27,7 +28,6 @@ regionConstructors['Residence'] = function(dynmap, configuration) {
|
||||||
boxLayers.push(subzoneLayer);
|
boxLayers.push(subzoneLayer);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
configuration.result(new L.LayerGroup(boxLayers));
|
configuration.result(new L.LayerGroup(boxLayers));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue