-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1. Mapas interactivos con datos georreferenciados.R
38 lines (30 loc) · 1.33 KB
/
1. Mapas interactivos con datos georreferenciados.R
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
################################
# INFORMACION GEOGRAFICA Y MAPAS
################################
# Repaso de la clase 6
# Importamos las librerías necesarias
library(tidyverse)
library(sf)
library(leaflet)
# Los datos provienen de vectores o marcos de datos asignados, u objetos de paquete sf
Centros_salud <- read_sf('./centros-de-salud-y-accion-comunitaria-zip/centros-de-salud-y-accion-comunitaria.shp')
# Veamos los datos
Centros_salud
# colnames(Centros_salud)
# [1] "id" "nombre" "telefono"
# [4] "jefe" "area_progr" "region_san"
# [7] "especialid" "calle" "altura"
# [10] "calle2" "direccion" "observacio"
# [13] "nom_ante" "VIH" "VACUNAT_"
# [16] "COMUNAS" "BARRIO" "SERVICIOS_"
# [19] "EFE_SALUD" "geometry"
# TAREA: BASÁNDONOS EN LOS DATOS GEORREFERENCIADOS CON LEAFLET: VISUALIZAR MÚLTIPLES ELEMENTOS EN EL MAPA INTERACTIVO, ES DECIR, TANTO NOMBRE DEL HOSPITAL AL POSAR EL CURSOR SOBRE EL PUNTO DEL CENTRO DE SALUD, Y AL PULSAR CLIC VER LAS ESPECIALIDADES DEL MISMO.
# EJEMPLO DE LA CLASE PASADA QUE NO FUNCIONA
#leaflet() %>%
# addTiles() %>%
# addMarkers(data = Centros_salud, label = ~nombre) %>%
# addMarkers(data = Centros_salud, popup = ~especialid)
# RESOLUCIÓN DE LA TAREA
leaflet(data = Centros_salud) %>%
addTiles() %>%
addMarkers(label = ~nombre, popup = ~especialid)