Merge pull request #344 from mikeprimm/master
Add subzones for Residence regions support
This commit is contained in:
commit
f501b31e20
1 changed files with 11 additions and 1 deletions
|
|
@ -17,7 +17,17 @@ regionConstructors['Residence'] = function(dynmap, configuration) {
|
||||||
})));
|
})));
|
||||||
|
|
||||||
boxLayers.push(boxLayer);
|
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);
|
||||||
|
subzoneLayer.bindPopup(configuration.createPopupContent(name2, $.extend(subzone, {
|
||||||
|
owners: { players: [subzone.Permissions.Owner] },
|
||||||
|
flags: subzone.Permissions.AreaFlags
|
||||||
|
})));
|
||||||
|
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