diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-07 17:34:45 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-11-11 07:44:44 +0000 |
commit | b8f8d5554523ae0aac58bea6811041b4fe070635 (patch) | |
tree | 855986f85064cd44bf9fc67b68e4f7a2b1b077b0 /web/cobrands/bristol/js.js | |
parent | a7f60abb0ada4d2ae1e9e8833ab1b5ce2cbe80ed (diff) |
[UK] Refactor WFS asset handling.
Allow multiple asset layers, and setting of multiple asset attributes.
[Bristol] Add Bristol asset layers.
Diffstat (limited to 'web/cobrands/bristol/js.js')
-rw-r--r-- | web/cobrands/bristol/js.js | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/web/cobrands/bristol/js.js b/web/cobrands/bristol/js.js new file mode 100644 index 000000000..f47df6777 --- /dev/null +++ b/web/cobrands/bristol/js.js @@ -0,0 +1,45 @@ +(function(){ + +var options = { + wfs_url: "https://maps.bristol.gov.uk/arcgis/services/ext/FixMyStreetSupportData/MapServer/WFSServer", + wfs_feature: "COD_ASSETS_POINT", + max_resolution: 0.33072982812632296, + min_resolution: 0.00001, + asset_id_field: 'COD_ASSET_ID', + asset_type: 'spot', + attributes: { + asset_id: 'COD_ASSET_ID', + usrn: 'COD_USRN' + }, + geometryName: 'SHAPE' +}; + +$(fixmystreet.add_assets($.extend({}, options, { + wfs_feature: "COD_ASSETS_AREA", + asset_type: 'area', + asset_category: "Bridges/Subways", + asset_item: 'bridge/subway' +}))); + +$(fixmystreet.add_assets($.extend({}, options, { + asset_category: "Gully/Drainage", + asset_item: 'gully', + filter_key: 'COD_ASSET_TYPE', + filter_value: 'GULLY' +}))); + +$(fixmystreet.add_assets($.extend({}, options, { + asset_category: "Grit Bins", + asset_item: 'grit bin', + filter_key: 'COD_ASSET_TYPE', + filter_value: 'GRITBIN' +}))); + +$(fixmystreet.add_assets($.extend({}, options, { + asset_category: "Street Lighting", + asset_item: 'street light', + filter_key: 'COD_ASSET_TYPE', + filter_value: 'SL' +}))); + +})(); |