alexdum commited on
Commit
0c8f6bf
·
1 Parent(s): 32bc054

feat: adjust initial map zoom level from 5 to 4

Browse files
Files changed (1) hide show
  1. server.R +1 -1
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 = 5
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
  })