-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.qmd
More file actions
60 lines (51 loc) · 1.29 KB
/
contact.qmd
File metadata and controls
60 lines (51 loc) · 1.29 KB
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
---
title: ""
lightbox: true
toc: false
---
<head>
<script>
document.title = "Ed Rubin: Contact";
</script>
</head>
::: {.grid style="row-gap: 0;"}
::: {.g-col-3 style="text-align: right;"}
__email__
:::
::: {.g-col-9}
edwardr `ampersat` uoregon `period` edu
:::
::: {.g-col-3 style="text-align: right;"}
__github__
:::
::: {.g-col-9}
[edrubin](https://github.com/edrubin)
:::
::: {.g-col-3 style="text-align: right;"}
__instagram__
:::
::: {.g-col-9}
[\@edwardarubin](https://instagram.com/edwardarubin/)
:::
:::
```{r}
#| echo: false
pacman::p_load(leaflet)
greenLeafIcon = makeIcon(
iconUrl = "http://leafletjs.com/examples/custom-icons/leaf-green.png",
iconWidth = 38, iconHeight = 95,
#iconWidth = 24, iconHeight = 70,
iconAnchorX = 22, iconAnchorY = 94,
shadowUrl = "http://leafletjs.com/examples/custom-icons/leaf-shadow.png",
shadowWidth = 50, shadowHeight = 64,
shadowAnchorX = 4, shadowAnchorY = 62
)
leaflet() |>
addMarkers(lng = -123.0805265, lat = 44.0442725, popup = "Me",
icon = greenLeafIcon) |>
setView(lng = -123.01, lat = 44.07, zoom = 12) |>
addProviderTiles(providers$CartoDB.Positron)
# addProviderTiles(providers$OpenWeatherMap.Clouds)
# setView(lng = -123.07, lat = 44.06, zoom = 4) %>%
# addProviderTiles(providers$NASAGIBS.ViirsEarthAtNight2012)
```