feat: adjust initial map zoom level from 5 to 4
Browse files
server.R
CHANGED
|
@@ -269,7 +269,7 @@ server <- function(input, output, session) {
|
|
| 269 |
maplibre(
|
| 270 |
style = "https://basemaps.cartocdn.com/gl/positron-gl-style/style.json",
|
| 271 |
center = c(138, 36),
|
| 272 |
-
zoom =
|
| 273 |
) %>%
|
| 274 |
add_navigation_control(show_compass = FALSE, visualize_pitch = FALSE, position = "top-left")
|
| 275 |
})
|
|
|
|
| 269 |
maplibre(
|
| 270 |
style = "https://basemaps.cartocdn.com/gl/positron-gl-style/style.json",
|
| 271 |
center = c(138, 36),
|
| 272 |
+
zoom = 4
|
| 273 |
) %>%
|
| 274 |
add_navigation_control(show_compass = FALSE, visualize_pitch = FALSE, position = "top-left")
|
| 275 |
})
|