@@ -22,6 +22,52 @@ const school = {
2222 }
2323} ;
2424
25+
26+ const digiAccess = {
27+ 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 " +
31+ "printing facilities, access to computers for public use and Wifi / internet access" ,
32+ Author : "MartinClarke" ,
33+ OSMFeatures : [ "ways" , "relations" , "nodes" ] ,
34+ GeoTags : {
35+ "amenity" : [ "library" , "community_centre" ]
36+ } ,
37+ AttributeTags : [
38+ { attributeName : "Internet Access" ,
39+ attributeTag : "internet_access" ,
40+ attributeValues : [ "wlan" , "yes" , "terminal" , "wifi" , "service" ] ,
41+ icon : "wifi"
42+ } ,
43+ { attributeName : "Printing Facilities" ,
44+ attributeTag : "digital_access" ,
45+ attributeValues : [ "printer" ] ,
46+ icon : "print"
47+ } ,
48+ { attributeName : "Computer Access" ,
49+ attributeTag : "digital_access" ,
50+ attributeValues : [ "computer" ] ,
51+ icon : "desktop"
52+ } ,
53+ { attributeName : "Membership Required" ,
54+ attributeTag : "digital_access:membership" ,
55+ attributeValues : [ "yes" ] ,
56+ icon : "exclamation" ,
57+ iconColor : "red"
58+ } ,
59+
60+ ] ,
61+ overpassQuery : `[out:json];\
62+ (way["amenity"~"(library|community_centre)$"][~"^(internet_access|digital_access)$"~"."](around:20000,56.0019,-3.7893);\
63+ node["amenity"~"(library|community_centre)$"][~"^(internet_access|digital_access)$"~"."](around:20000,56.0019,-3.7893););\
64+ out body;>;out skel qt;` ,
65+ mapConfig : {
66+ mapIcon : "wifi" ,
67+ color : "blue"
68+ }
69+ } ;
70+
2571export {
26- school
72+ school , digiAccess
2773} ;
0 commit comments