1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
(function(){
if (!fixmystreet.maps) {
return;
}
// Assets are served from two different WFS feeds; one for lighting and one
// for everything else. They have some options in common:
var common_options = {
max_resolution: {
'bristol': 0.33072982812632296,
'fixmystreet': 4.777314267158508
},
min_resolution: 0.00001,
asset_type: 'spot',
body: "Bristol City Council",
srsName: "EPSG:27700",
geometryName: 'SHAPE'
};
var options = $.extend({}, common_options, {
wfs_url: "https://maps.bristol.gov.uk/arcgis/services/ext/FixMyStreetSupportData/MapServer/WFSServer",
wfs_feature: "COD_ASSETS_POINT",
asset_id_field: 'COD_ASSET_ID',
propertyNames: [ 'COD_ASSET_ID', 'COD_USRN', 'COD_ASSET_TYPE' ],
attributes: {
asset_id: 'COD_ASSET_ID',
usrn: 'COD_USRN'
}
});
fixmystreet.assets.add(options, {
wfs_feature: "COD_ASSETS_AREA",
asset_type: 'area',
asset_category: "Bridges/Subways",
asset_item: 'bridge/subway'
});
fixmystreet.assets.add(options, {
asset_category: "Gully/Drainage",
asset_item: 'gully',
filter_key: 'COD_ASSET_TYPE',
filter_value: 'GULLY'
});
fixmystreet.assets.add(options, {
asset_category: "Grit Bins",
asset_item: 'grit bin',
filter_key: 'COD_ASSET_TYPE',
filter_value: 'GRITBIN'
});
var lighting_options = $.extend({}, common_options, {
wfs_url: "https://maps.bristol.gov.uk/arcgis/services/ext/datagov/MapServer/WFSServer",
wfs_feature: "Streetlights",
asset_id_field: 'Unit_ID',
propertyNames: [ 'USRN', 'Unit_ID', 'Unit_type_description' ],
attributes: {
asset_id: function() {
if (this.attributes && this.attributes.Unit_ID) {
if (this.attributes.Unit_ID.match(/^SL/)) {
// Just in case they ever start prefixing it in the WFS...
return this.attributes.Unit_ID;
} else {
return "SL" + this.attributes.Unit_ID;
}
} else {
return "";
}
},
usrn: 'USRN'
},
filter_key: 'Unit_type_description'
});
fixmystreet.assets.add(lighting_options, {
asset_category: "Street Light",
asset_item: 'street light',
filter_value: [
'SL: Street Light',
'SL: Silverspring CMS',
'SL: Philips CMS',
'SL: Feature Fld.Lgt',
'SL: Gas Light',
'SL: High Mast',
'SL: Refuge Column',
'SL: Subway'
]
});
fixmystreet.assets.add(lighting_options, {
asset_category: "Zebra Crossing Light",
asset_item: 'light',
filter_value: 'SL: Zebra'
});
fixmystreet.assets.add(lighting_options, {
asset_category: "Iluminated Bollard",
asset_item: 'bollard',
filter_value: 'SL: Bollard'
});
// NB there's a typo in BCC's ‘Iluminated Bollard’ category so this repeats
// the above (without the typo) just in case they fix it.
fixmystreet.assets.add(lighting_options, {
asset_category: "Illuminated Bollard",
asset_item: 'bollard',
filter_value: 'SL: Bollard'
});
fixmystreet.assets.add(lighting_options, {
asset_category: "Illuminated Sign",
asset_item: 'sign',
filter_value: 'SL: Sign'
});
})();
|