Fix nesting - iterating over areas versus residences
This commit is contained in:
parent
b2a8441c67
commit
82722e4f61
1 changed files with 9 additions and 9 deletions
|
|
@ -17,6 +17,7 @@ regionConstructors['Residence'] = function(dynmap, configuration) {
|
|||
})));
|
||||
|
||||
boxLayers.push(boxLayer);
|
||||
});
|
||||
$.each(residence.Subzones, function(szname, subzone) {
|
||||
$.each(subzone.Areas, function(name2, area2) {
|
||||
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);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
configuration.result(new L.LayerGroup(boxLayers));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue