diff options
-rw-r--r-- | web/cobrands/bexley/js.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/web/cobrands/bexley/js.js b/web/cobrands/bexley/js.js index e55827fbb..0ab9f6fb7 100644 --- a/web/cobrands/bexley/js.js +++ b/web/cobrands/bexley/js.js @@ -44,5 +44,35 @@ fixmystreet.assets.add(defaults, { }) }); +fixmystreet.assets.add(defaults, { + http_options: { + params: { + TYPENAME: "Bollards" + } + }, + asset_type: 'spot', + asset_id_field: 'Unit_ID', + attributes: { + UnitID: 'Unit_ID' + }, + asset_category: ["Traffic bollard"], + asset_item: 'bollard' +}); + +fixmystreet.assets.add(defaults, { + http_options: { + params: { + TYPENAME: "Lighting" + } + }, + asset_type: 'spot', + asset_id_field: 'Unit_ID', + attributes: { + UnitID: 'Unit_ID' + }, + asset_category: ["Lamp post", "Light in park or open space", "Underpass light", "Light in multi-storey car park", "Light in outside car park"], + asset_item: 'street light' +}); + })(); |