Html – using rvest to extract lat lon
I am trying to get the lat lon of all stores from here https://www.wellcome.com.hk/en/our-store On inspecting, I can see that lat and lon are contained within div library(dplyr) library(rvest) url_company <- rvest::read_html("https://www.wellcome.com.hk/en/our-store") url_company %>% html_elements("div") %>% # extracted all the…