-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Hello,
The sync function shows a strange behaviour. The maps created with mapview display both the data and the underlying layer. However, when these maps are shown together with sync, the data is missing.
library(sp)
library(mapview)
library(leafsync)
data(meuse)
coordinates(meuse) <- ~x+y
proj4string(meuse) <- CRS("+init=epsg:28992")
## view different aspects of same data set
m1 <- mapview(meuse, zcol = "soil", burst = TRUE)
m2 <- mapview(meuse, zcol = "lead")
m3 <- mapview(meuse, zcol = "landuse", map.types = "Esri.WorldImagery")
m4 <- mapview(meuse, zcol = "dist.m")
m1 #correct
sync(m1, m2, m3, m4) #no data
Metadata
Metadata
Assignees
Labels
No labels

