|
1 | | -const school = { |
2 | | - Name: "schools", |
3 | | - Title: "Example theme - Schools", |
4 | | - Headline: "Shows locations of schools", |
5 | | - Description: "An example OpenStreetMap theme, showing the location of schools.", |
6 | | - Author: "Martin Clarke", |
| 1 | +const helpAdvice = { |
| 2 | + Name: "helpAdvice", |
| 3 | + Title: "Example Theme - Community Information and Advice ", |
| 4 | + Headline: "Shows locations of places where advice is provided", |
| 5 | + Description: "Shows community based help and advice offices", |
| 6 | + Author: "MartinClarke", |
7 | 7 | AttributeTags: [ |
8 | | - { attributeName: "Internet Access", |
9 | | - attributeTag: "internet_access", |
10 | | - attributeValues: ["wlan", "yes", "terminal", "wifi", "service"], |
11 | | - icon: "wifi" |
12 | | - } |
13 | | - ], |
| 8 | + { attributeName: "Citizens Advice", |
| 9 | + attributeTag: "social_facility", |
| 10 | + attributeValues: ["citizens_advice"], |
| 11 | + icon: "hands-helping" |
| 12 | + }, |
| 13 | + { |
| 14 | + attributeName: "Financial Support", |
| 15 | + attributeTag: "social_facility", |
| 16 | + attributeValues: ["financial_services"], |
| 17 | + icon: "hands-helping" |
| 18 | + }, |
| 19 | + { |
| 20 | + attributeName: "Family Support & Social Advice", |
| 21 | + attributeTag: "social_facility", |
| 22 | + attributeValues: ["advice_service"], |
| 23 | + icon: "users" |
| 24 | + }, |
| 25 | + { |
| 26 | + attributeName: "Mental Health Support", |
| 27 | + attributeTag: "healthcare", |
| 28 | + attributeValues: ["mental_health"], |
| 29 | + icon:"hands-helping" |
| 30 | + }, |
| 31 | + ], |
14 | 32 | overpassQuery: `[out:json];\ |
15 | | - (way["amenity"~"(school)$"](around:5000,56.0019,-3.7893);\ |
16 | | - relation["amenity"~"(school)$"](around:5000,56.0019,-3.7893);\ |
17 | | - node["amenity"~"(school)$"](around:5000,56.0019,-3.7893););\ |
| 33 | + (way["amenity"="social_facility"][~"^(healthcare|social_facility)$"~"(financial_services|advice_service|mental_health|citizens_advice)$"](around:20000,56.0019,-3.7893);\ |
| 34 | + node["amenity"="social_facility"][~"^(healthcare|social_facility)$"~"(financial_services|advice_service|mental_health|citizens_advice)$"](around:20000,56.0019,-3.7893););\ |
18 | 35 | out body;>;out skel qt;`, |
19 | 36 | mapConfig: { |
20 | | - mapIcon: "school", |
21 | | - color: "blue" |
| 37 | + mapIcon: "hands-helping", |
| 38 | + color: "darkblue" |
22 | 39 | } |
23 | 40 | }; |
24 | 41 |
|
25 | | - |
26 | 42 | const digiAccess = { |
27 | 43 | Name: "digitalAccess", |
28 | | - Title: "Digital Access", |
29 | | - Headline: "Shows locations of places that provides access to digital Services", |
30 | | - Description: "This theme shows locations that provide access to digital services. These include access to " + |
| 44 | + Title: "Example theme - Community Digital Access", |
| 45 | + Headline: "Shows community locations that provides access to digital Services", |
| 46 | + Description: "This theme shows community locations that provide access to digital services. These include access to " + |
31 | 47 | "printing facilities, access to computers for public use and Wifi / internet access", |
32 | 48 | Author: "MartinClarke", |
33 | | - OSMFeatures: ["ways", "relations", "nodes"], |
34 | | - GeoTags: { |
35 | | - "amenity": ["library", "community_centre"] |
36 | | - }, |
37 | 49 | AttributeTags: [ |
38 | 50 | { attributeName: "Internet Access", |
39 | 51 | attributeTag: "internet_access", |
@@ -69,5 +81,5 @@ const digiAccess = { |
69 | 81 | }; |
70 | 82 |
|
71 | 83 | export { |
72 | | - school, digiAccess |
| 84 | + helpAdvice, digiAccess |
73 | 85 | }; |
0 commit comments