generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
mapscript.js
418 lines (395 loc) · 8.93 KB
/
mapscript.js
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
import attractionMarkerImage from "./assets/images/markers/attraction-marker.png";
import activityMarkerImage from "./assets/images/markers/scenic.png";
import foodMarkerImage from "./assets/images/markers/food.png";
import cityMarkerImage from "./assets/images/markers/city.png";
import cultureMarkerImage from "./assets/images/markers/culture.png";
import favouriteMarkerImage from "./assets/images/markers/favourite.png";
import luxuryMarkerImage from "./assets/images/markers/luxury.png";
import parkMarkerImage from "./assets/images/markers/park.png";
import sportsMarkerImage from "./assets/images/markers/sport.png";
import { isFavouritedActivity } from "./helpers";
export const attractionMarkerIcon = L.icon({
iconUrl: attractionMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const activityMarkerIcon = L.icon({
iconUrl: activityMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const foodMarkerIcon = L.icon({
iconUrl: foodMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const cityMarkerIcon = L.icon({
iconUrl: cityMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const cultureMarkerIcon = L.icon({
iconUrl: cultureMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const favouriteMarkerIcon = L.icon({
iconUrl: favouriteMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const luxuryMarkerIcon = L.icon({
iconUrl: luxuryMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const parkMarkerIcon = L.icon({
iconUrl: parkMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
export const sportsMarkerIcon = L.icon({
iconUrl: sportsMarkerImage,
iconSize: [60, 60],
iconAnchor: [16, 32],
});
const DUMMY_ACTIVITY_API_DATA = {
context: "http://schema.org",
type: [
"LocalBusiness",
"TouristAttraction",
"LandmarksOrHistoricalBuildings",
],
address: {
type: "PostalAddress",
addressLocality: "Conna",
addressRegion: "Cork",
addressCountry: "Republic of Ireland",
},
geo: {
type: "GeoCoordinates",
longitude: -8.1016545,
latitude: 52.0945205,
},
image: {
type: "ImageObject",
caption: "Fáilte Ireland Logo",
url: "https://failtecdn.azureedge.net/failteireland/F%C3%A1ilte_Ireland_Logo_OpenDataAPI.jpg",
},
name: "Conna Castle",
tags: ["Activity", "Castle", "Attraction", "Historic Houses and Castle"],
telephone: "+353862149601",
url: "https://www.castles.nl/conna-castle",
};
export const ALL_CATEGORIES = {
food: [
"Food and Drink",
"Restaurant",
"Local Produce",
"Food Shops",
"Cafe",
"Pubs and Bar",
"Fast Food",
"Cooking",
"Cookery",
"Vegetarian",
"Seafood",
"Food Trails and Tour",
"Fine Dining",
"Vegan",
"Banquet",
],
sport: [
"Kayaking",
"Activity Operator",
"Walking",
"Boat",
"Cycling",
"Horse Riding",
"Equestrian",
"Fitness and Leisure",
"Fishing",
"Angling",
"Swimming",
"Swimming Pools and Water Park",
"Swimming Pool",
"Sailing",
"Climbing",
"Golf",
"Zip Lining",
"Sports Venues",
"Adventure Park",
"Kitesurfing",
"Windsurfing",
"Surfing",
"Race Course",
"Golf Course",
"Driving Range",
"Golf Driving Range",
"Gaa",
"Pitch And Putt",
"Pitch and Putt",
"Sports Venue",
],
scenic: [
"Day Tour",
"Tour",
"Forest Park",
"Park and Forest Walk",
"Public Park",
"Nature and Wildlife",
"Bird Watching",
"Transport",
"Coach",
"Road",
"Marina",
"Photography",
"Agriculture",
"Gardening",
"Historic Houses and Castle",
"Island",
"Offshore Island",
"Natural Landscape",
"Castle",
"Visitor Farm",
"Church Abbey",
"Monastery",
"Churches",
"Abbeys and Monastery",
"Falconry",
"Gardens",
"Garden",
"Discovery Point",
"Ruins",
"National Park",
"National and Forest Park",
"Beach",
],
culture: [
"Traditionally Irish",
"Venue",
"Music",
"Craft",
"Tracing Your Ancestors",
"Learning",
"Artisan",
"Art Gallery",
"Museums and Attraction",
"Literary Ireland",
"Public Sculpture",
],
city: [
"Shopping",
"Shopping Centres and Department Store",
"Movies",
"Cinema",
"Comedy",
"Embarkation Point",
"Zoos and Aquarium",
"General",
"Casinos",
"Stadium",
],
luxury: [
"Pampering",
"Health Farm",
"Spa and Wellness",
"Specialised Retreat",
"Cruising",
"Spa",
],
};
export function selectMarkerIconFromValue(activity) {
let icon;
switch (activity.category) {
case "food":
icon = foodMarkerIcon;
break;
case "sport":
icon = sportsMarkerIcon;
break;
case "scenic":
icon = parkMarkerIcon;
break;
case "luxury":
icon = luxuryMarkerIcon;
break;
case "culture":
icon = cultureMarkerIcon;
break;
case "city":
icon = cityMarkerIcon;
break;
default:
icon = activityMarkerIcon;
break;
}
if (isFavouritedActivity(activity)) {
icon = favouriteMarkerIcon;
}
return icon;
}
const waterColourMap = L.tileLayer(
"https://stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.{ext}",
{
attribution:
'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> — Map data © <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
subdomains: "abcd",
minZoom: 1,
maxZoom: 16,
ext: "jpg",
}
);
const natGeoMap = L.tileLayer(
"https://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}",
{
attribution:
"Tiles © Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC",
maxZoom: 16,
}
);
const defaultMap = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
maxZoom: 19,
attribution:
'© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>',
}
);
const darkMap = L.tileLayer(
"https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png",
{
maxZoom: 20,
attribution:
'© <a href="https://stadiamaps.com/">Stadia Maps</a>, © <a href="https://openmaptiles.org/">OpenMapTiles</a> © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors',
}
);
export function selectMapTheme(value) {
let map;
switch (value) {
case "default":
map = defaultMap;
break;
case "dark":
map = darkMap;
break;
case "natgeo":
map = natGeoMap;
break;
case "watercolour":
map = waterColourMap;
break;
default:
map = defaultMap;
break;
}
return map;
}
// export const ALL_TAGS = [
// "Food and Drink",
// "Restaurant",
// "Local Produce",
// "Kayaking",
// "Activity Operator",
// "Walking",
// "Day Tour",
// "Tour",
// "Boat",
// "Traditionally Irish",
// "Venue",
// "Music",
// "Forest Park",
// "Park and Forest Walk",
// "Cycling",
// "Public Park",
// "Nature and Wildlife",
// "Bird Watching",
// "Craft",
// "Shopping",
// "Shopping Centres and Department Store",
// "Food Shops",
// "Cafe",
// "Tracing Your Ancestors",
// "Transport",
// "Horse Riding",
// "Equestrian",
// "Coach",
// "Road",
// "Pubs and Bar",
// "Movies",
// "Cinema",
// "Pampering",
// "Health Farm",
// "Spa and Wellness",
// "Specialised Retreat",
// "Fitness and Leisure",
// "Fast Food",
// "Cruising",
// "Bike Rental",
// "Fishing",
// "Angling",
// "Comedy",
// "Swimming",
// "Swimming Pools and Water Park",
// "Swimming Pool",
// "Sailing",
// "Cooking",
// "Cookery",
// "Learning",
// "Climbing",
// "Golf",
// "Zip Lining",
// "Marina",
// "Vegetarian",
// "Seafood",
// "Photography",
// "Sports Venues",
// "Adventure Park",
// "Spa",
// "Agriculture",
// "Kitesurfing",
// "Windsurfing",
// "Surfing",
// "Artisan",
// "Food Trails and Tour",
// "Race Course",
// "Fine Dining",
// "Vegan",
// "Golf Course",
// "Gardening",
// "Historic Houses and Castle",
// "Island",
// "Offshore Island",
// "Natural Landscape",
// "Art Gallery",
// "Museums and Attraction",
// "Castle",
// "Visitor Farm",
// "Church Abbey",
// "Monastery",
// "Churches",
// "Abbeys and Monastery",
// "Falconry",
// "Gardens",
// "Garden",
// "Embarkation Point",
// "River",
// "Discovery Point",
// "Ruins",
// "Literary Ireland",
// "Zoos and Aquarium",
// "Public Sculpture",
// "National Park",
// "National and Forest Park",
// "Driving Range",
// "General",
// "Golf Driving Range",
// "Gaa",
// "Pitch And Putt",
// "Pitch and Putt",
// "Beach",
// "Banquet",
// "Casinos",
// "Stadium",
// "Sports Venue",
// ];