-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Rhistory
512 lines (512 loc) · 18.2 KB
/
.Rhistory
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
TRUE ~ "bullseye"),
library = case_when(TRUE ~ "fa"),
marker_color = "green"
)
##########################
## Create hover text ##
##########################
get_popup_content <- function(my_spdf) {
paste0(
"<b>Provider </b>",
#"<br><b>- Provider code</b>:", my_spdf@data$Trust_Code,
"<br><b>- Provider name:</b> ", my_spdf@data$`Provider name`,
"<br><b>- Provider type:</b> ", my_spdf@data$`Provider type`,
"<br><b>- ICS (HQ postcode-based):</b> ", my_spdf@data$ICB,
sep=""
)
}
map_trusts_2 <- m %>%
leaflet::addAwesomeMarkers(
data = trust_spdf_points,
popup = ~get_popup_content(trust_spdf_points),
#label=~as.character(Organisation_Name),
label = ~ lapply(get_popup_content(trust_spdf_points), htmltools::HTML),
icon = awesomeIcons(
library = ~library,
icon = ~icon,
iconColor = "#FFFFFF", # the icon's colour
markerColor = ~marker_color, # this does not accept hex...
#text="1"
)
)
map_trusts_2
map_trusts_4 <- m %>%
addCircleMarkers(data=subset(trust_spdf_points, `Trust Type`=="ACUTE"),
group="Acute",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Trust Type`=="ACUTE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Trust Type`=="MENTAL HEALTH"),
group="Mental Health",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Trust Type`=="MENTAL HEALTH")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Trust Type`=="AMBULANCE"),
group="Ambulance",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Trust Type`=="AMBULANCE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Trust Type`=="COMMUNITY"),
group="Community Health Services",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Trust Type`=="COMMUNITY")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addLegend("bottomright", pal = pal, values = trust_spdf_points@data$Region,
title = "EPR supplier",
#labFormat = labelFormat(prefix = ""),
opacity = 1
) %>%
leaflet::addLayersControl(
overlayGroups = c("Acute","Mental Health","Ambulance","Community Health Services"), # add these layers
options = layersControlOptions(collapsed = FALSE) # expand on hover?
) %>%
hideGroup(c("Mental Health","Ambulance","Community Health Services")) # turn these off by default
map_trusts_4 <- m %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider Type`=="ACUTE"),
group="Acute",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider Type`=="ACUTE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider Type`=="MENTAL HEALTH"),
group="Mental Health",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider Type`=="MENTAL HEALTH")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider Type`=="AMBULANCE"),
group="Ambulance",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider Type`=="AMBULANCE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider Type`=="COMMUNITY"),
group="Community Health Services",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider Type`=="COMMUNITY")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addLegend("bottomright", pal = pal, values = trust_spdf_points@data$Region,
title = "EPR supplier",
#labFormat = labelFormat(prefix = ""),
opacity = 1
) %>%
leaflet::addLayersControl(
overlayGroups = c("Acute","Mental Health","Ambulance","Community Health Services"), # add these layers
options = layersControlOptions(collapsed = FALSE) # expand on hover?
) %>%
hideGroup(c("Mental Health","Ambulance","Community Health Services")) # turn these off by default
map_trusts_4 <- m %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="ACUTE"),
group="Acute",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="ACUTE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="MENTAL HEALTH"),
group="Mental Health",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="MENTAL HEALTH")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="AMBULANCE"),
group="Ambulance",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="AMBULANCE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="COMMUNITY"),
group="Community Health Services",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="COMMUNITY")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addLegend("bottomright", pal = pal, values = trust_spdf_points@data$Region,
title = "EPR supplier",
#labFormat = labelFormat(prefix = ""),
opacity = 1
) %>%
leaflet::addLayersControl(
overlayGroups = c("Acute","Mental Health","Ambulance","Community Health Services"), # add these layers
options = layersControlOptions(collapsed = FALSE) # expand on hover?
) %>%
hideGroup(c("Mental Health","Ambulance","Community Health Services")) # turn these off by default
trust_spdf_points@data <- trust_spdf_points@data %>% mutate(
marker_color_hex= pal(Region), # create a pallette based on e.g. Region
icon = case_when(`Provider type`=="ACUTE" ~ "bullseye",
TRUE ~ "bullseye"),
library = case_when(TRUE ~ "fa"),
marker_color = "green"
)
map_trusts_4 <- m %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="ACUTE"),
group="Acute",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="ACUTE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="MENTAL HEALTH"),
group="Mental Health",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="MENTAL HEALTH")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="AMBULANCE"),
group="Ambulance",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="AMBULANCE")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addCircleMarkers(data=subset(trust_spdf_points, `Provider type`=="COMMUNITY"),
group="Community Health Services",
label = ~ lapply(get_popup_content(subset(trust_spdf_points, `Provider type`=="COMMUNITY")), htmltools::HTML),
fillColor = ~marker_color_hex,
color="#a9a9a9",
weight=2,
fillOpacity = 1,
stroke = T,
radius=9) %>%
addLegend("bottomright", pal = pal, values = trust_spdf_points@data$Region,
title = "EPR supplier",
#labFormat = labelFormat(prefix = ""),
opacity = 1
) %>%
leaflet::addLayersControl(
overlayGroups = c("Acute","Mental Health","Ambulance","Community Health Services"), # add these layers
options = layersControlOptions(collapsed = FALSE) # expand on hover?
) %>%
hideGroup(c("Mental Health","Ambulance","Community Health Services")) # turn these off by default
map_trusts_4
library(rgdal)
library(readxl)
library(openxlsx)
library(ggplot2)
library(tidyverse)
library(leaflet)
library(htmlwidgets)
master_ICS <- read_xlsx("ICS_master.xlsx") # load previously curated ICS file
master_trust_mt <- read_xlsx("trusts_master.xlsx") # load previously curated trust file
master_trust <- master_trust_mt
master_trust <- master_trust %>% mutate(Region = factor(Region)) # optional, turn Region (or other categoricals) into factor
# See e.g. resources in https://geoportal.statistics.gov.uk/search?collection=Dataset&sort=name&tags=all(BDY_ICB%2CAPR_2023)
# Advice to use BSC or BUS (generalised or ultra-generalised if very detailed boundaries not needed, as this reduces size and eventual html load time)
stp_spdf <- readOGR("./Integrated_Care_Boards_April_2023_EN_BSC_-68820443008618605/ICB_APR_2023_EN_BSC.shp") # load ICS shapefile
proj4string(stp_spdf) <- CRS("+init=epsg:27700") # BNG projection system
stp_spdf <- stp_spdf %>% sp::spTransform(CRS("+init=epsg:4326")) # reproject to latlong system
# Add relevant ICB master (enrichment) info to Shapefile
stp_spdf@data <- stp_spdf@data %>% left_join(master_ICS,by=c("ICB23CD"))
#############################################
# Create a points shapefile for Trusts
#############################################
trust_spdf_points <- sp::SpatialPointsDataFrame(
coords = master_trust %>% select(Longitude,Latitude),
data = master_trust %>% select(-c(Longitude,Latitude)),
proj4string = CRS("+init=epsg:4326") # indicate it is is longitude latitude
)
# Prepare the text for ICS tooltips:
mytext <- paste(
"<b> ICS</b><br/>",
"<b>- ICS code:</b> ", stp_spdf@data$ICB23CD,", ",stp_spdf@data$ICB23CDH,"<br/>",
"<b>- ICS name:</b> ", stp_spdf@data$ICB23NM.x,"<br/>",
"<b>- Region name:</b> ", stp_spdf@data$NHSER23NM,"<br/>",
"<b>- 23/24 Population:</b> ", round(stp_spdf@data$Population2324,0),"<br/>",
"<b>- Number of GP practices:</b> ", stp_spdf@data$Gppractices,"<br/>",
sep="") %>%
lapply(htmltools::HTML)
# ICS map layer ###########
# Not colour-coded version
m<-leaflet(stp_spdf) %>%
addTiles() %>%
setView( lat=53, lng=-2 , zoom=5.5) %>%
addPolygons(
fillColor = "white",
stroke=TRUE,
fillOpacity = 0.8,
color="darkgray",
weight=3,
label = mytext,
labelOptions = labelOptions(
style = list("font-weight" = "normal", padding = "3px 8px"),
textsize = "13px",
direction = "auto"
)
)
# View resulting file
m
# Create a color palette with handmade bins.
library(RColorBrewer)
mybins <- c(0,500,1000,1500,2000,2500,3000,Inf)*1000
mypalette <- colorBin( palette="YlOrBr", domain=stp_spdf@data$Population2324, na.color="transparent", bins=mybins)
m_pop<-leaflet(stp_spdf) %>%
addTiles() %>%
setView( lat=53, lng=-2 , zoom=5.5) %>%
addPolygons(
fillColor = ~mypalette(Population2324),
stroke=TRUE,
fillOpacity = 0.8,
color="darkgray",
weight=3,
label = mytext,
labelOptions = labelOptions(
style = list("font-weight" = "normal", padding = "3px 8px"),
textsize = "13px",
direction = "auto"
)
) %>%
addLegend( pal=mypalette, values=~Population2324, opacity=0.9, title = "Population estimate 23/24", position = "bottomleft" )
# View resulting file
m_pop
trust_spdf_points@data <- trust_spdf_points@data %>% mutate(
marker_color_hex= factpal(Region), # create a pallette based on e.g. Region
icon = case_when(`Provider type`=="ACUTE" ~ "bullseye",
TRUE ~ "bullseye"),
library = case_when(TRUE ~ "fa"),
marker_color = "green"
)
library(rgdal)
library(readxl)
library(openxlsx)
library(ggplot2)
library(tidyverse)
library(leaflet)
library(htmlwidgets)
master_ICS <- read_xlsx("ICS_master.xlsx") # load previously curated ICS file
master_trust_mt <- read_xlsx("trusts_master.xlsx") # load previously curated trust file
master_trust <- master_trust_mt
master_trust <- master_trust %>% mutate(Region = factor(Region)) # optional, turn Region (or other categoricals) into factor
master_ICS <- read_xlsx("ICS_master.xlsx") # load previously curated ICS file
master_trust_mt <- read_xlsx("trusts_master.xlsx") # load previously curated trust file
master_trust <- master_trust_mt
master_trust <- master_trust %>% mutate(Region = factor(Region)) # optional, turn Region (or other categoricals) into factor
# See e.g. resources in https://geoportal.statistics.gov.uk/search?collection=Dataset&sort=name&tags=all(BDY_ICB%2CAPR_2023)
# Advice to use BSC or BUS (generalised or ultra-generalised if very detailed boundaries not needed, as this reduces size and eventual html load time)
stp_spdf <- readOGR("./Integrated_Care_Boards_April_2023_EN_BSC_-68820443008618605/ICB_APR_2023_EN_BSC.shp") # load ICS shapefile
proj4string(stp_spdf) <- CRS("+init=epsg:27700") # BNG projection system
stp_spdf <- stp_spdf %>% sp::spTransform(CRS("+init=epsg:4326")) # reproject to latlong system
# Add relevant ICB master (enrichment) info to Shapefile
stp_spdf@data <- stp_spdf@data %>% left_join(master_ICS,by=c("ICB23CD"))
#############################################
# Create a points shapefile for Trusts
#############################################
trust_spdf_points <- sp::SpatialPointsDataFrame(
coords = master_trust %>% select(Longitude,Latitude),
data = master_trust %>% select(-c(Longitude,Latitude)),
proj4string = CRS("+init=epsg:4326") # indicate it is is longitude latitude
)
# Prepare the text for ICS tooltips:
mytext <- paste(
"<b> ICS</b><br/>",
"<b>- ICS code:</b> ", stp_spdf@data$ICB23CD,", ",stp_spdf@data$ICB23CDH,"<br/>",
"<b>- ICS name:</b> ", stp_spdf@data$ICB23NM.x,"<br/>",
"<b>- Region name:</b> ", stp_spdf@data$NHSER23NM,"<br/>",
"<b>- 23/24 Population:</b> ", round(stp_spdf@data$Population2324,0),"<br/>",
"<b>- Number of GP practices:</b> ", stp_spdf@data$Gppractices,"<br/>",
sep="") %>%
lapply(htmltools::HTML)
# ICS map layer ###########
# Not colour-coded version
m<-leaflet(stp_spdf) %>%
addTiles() %>%
setView( lat=53, lng=-2 , zoom=5.5) %>%
addPolygons(
fillColor = "white",
stroke=TRUE,
fillOpacity = 0.8,
color="darkgray",
weight=3,
label = mytext,
labelOptions = labelOptions(
style = list("font-weight" = "normal", padding = "3px 8px"),
textsize = "13px",
direction = "auto"
)
)
# View resulting file
m
# Create a color palette with handmade bins.
library(RColorBrewer)
# Create a color palette with handmade bins.
library(RColorBrewer)
mybins <- c(0,500,1000,1500,2000,2500,3000,Inf)*1000
mypalette <- colorBin( palette="YlOrBr", domain=stp_spdf@data$Population2324, na.color="transparent", bins=mybins)
m_pop<-leaflet(stp_spdf) %>%
addTiles() %>%
setView( lat=53, lng=-2 , zoom=5.5) %>%
addPolygons(
fillColor = ~mypalette(Population2324),
stroke=TRUE,
fillOpacity = 0.8,
color="darkgray",
weight=3,
label = mytext,
labelOptions = labelOptions(
style = list("font-weight" = "normal", padding = "3px 8px"),
textsize = "13px",
direction = "auto"
)
) %>%
addLegend( pal=mypalette, values=~Population2324, opacity=0.9, title = "Population estimate 23/24", position = "bottomleft" )
# View resulting file
m_pop
# palette for circles
factpal <- colorFactor("RdYlBu", trust_spdf_points@data$Region) # viridis
trust_spdf_points@data <- trust_spdf_points@data %>% mutate(
marker_color_hex= factpal(Region), # create a pallette based on e.g. Region
icon = case_when(`Provider type`=="ACUTE" ~ "bullseye",
TRUE ~ "bullseye"),
library = case_when(TRUE ~ "fa"),
marker_color = "green"
)
##########################
## Create hover text ##
##########################
get_popup_content <- function(my_spdf) {
paste0(
"<b>Provider </b>",
#"<br><b>- Provider code</b>:", my_spdf@data$Trust_Code,
"<br><b>- Provider name:</b> ", my_spdf@data$`Provider name`,
"<br><b>- Provider type:</b> ", my_spdf@data$`Provider type`,
"<br><b>- ICS (HQ postcode-based):</b> ", my_spdf@data$ICB,
sep=""
)
}
map_trusts_2 <- m %>%
leaflet::addAwesomeMarkers(
data = trust_spdf_points,
popup = ~get_popup_content(trust_spdf_points),
#label=~as.character(Organisation_Name),
label = ~ lapply(get_popup_content(trust_spdf_points), htmltools::HTML),
icon = awesomeIcons(
library = ~library,
icon = ~icon,
iconColor = "#FFFFFF", # the icon's colour
markerColor = ~marker_color, # this does not accept hex...
#text="1"
)
)
map_trusts_2
trust_spdf_points@data <- trust_spdf_points@data %>% mutate(
marker_color_hex= factpal(Region), # create a pallette based on e.g. Region
icon = case_when(`Provider type`=="ACUTE" ~ "hospital",
TRUE ~ "bullseye"),
library = case_when(TRUE ~ "fa"),
marker_color = "green"
)
map_trusts_2 <- m %>%
leaflet::addAwesomeMarkers(
data = trust_spdf_points,
popup = ~get_popup_content(trust_spdf_points),
#label=~as.character(Organisation_Name),
label = ~ lapply(get_popup_content(trust_spdf_points), htmltools::HTML),
icon = awesomeIcons(
library = ~library,
icon = ~icon,
iconColor = "#FFFFFF", # the icon's colour
markerColor = ~marker_color, # this does not accept hex...
)
)
map_trusts_2
trust_spdf_points@data <- trust_spdf_points@data %>% mutate(
marker_color_hex= factpal(Region), # create a pallette based on e.g. Region
icon = case_when(`Provider type`=="ACUTE" ~ "fa-hospital",
TRUE ~ "bullseye"),
library = case_when(TRUE ~ "fa"),
marker_color = "green"
)
##########################
## Create hover text ##
##########################
get_popup_content <- function(my_spdf) {
paste0(
"<b>Provider </b>",
#"<br><b>- Provider code</b>:", my_spdf@data$Trust_Code,
"<br><b>- Provider name:</b> ", my_spdf@data$`Provider name`,
"<br><b>- Provider type:</b> ", my_spdf@data$`Provider type`,
"<br><b>- ICS (HQ postcode-based):</b> ", my_spdf@data$ICB,
sep=""
)
}
map_trusts_2 <- m %>%
leaflet::addAwesomeMarkers(
data = trust_spdf_points,
popup = ~get_popup_content(trust_spdf_points),
#label=~as.character(Organisation_Name),
label = ~ lapply(get_popup_content(trust_spdf_points), htmltools::HTML),
icon = awesomeIcons(
library = ~library,
icon = ~icon,
iconColor = "#FFFFFF", # the icon's colour
markerColor = ~marker_color, # this does not accept hex...
)
)
map_trusts_2
trust_spdf_points@data <- trust_spdf_points@data %>% mutate(
marker_color_hex= factpal(Region), # create a pallette based on e.g. Region
icon = case_when(`Provider type`=="ACUTE" ~ "circle-h",
TRUE ~ "bullseye"),
library = case_when(TRUE ~ "fa"),
marker_color = "green"
)
map_trusts_2 <- m %>%
leaflet::addAwesomeMarkers(
data = trust_spdf_points,
popup = ~get_popup_content(trust_spdf_points),
#label=~as.character(Organisation_Name),
label = ~ lapply(get_popup_content(trust_spdf_points), htmltools::HTML),
icon = awesomeIcons(
library = ~library,
icon = ~icon,
iconColor = "#FFFFFF", # the icon's colour
markerColor = ~marker_color, # this does not accept hex...
)
)
map_trusts_2