Estoy tratando de visualizar un gran sf dataframe con unas 1000 filas que contienen rayas con vista de mapa ::mapview() en R . Desgraciadamente, aparece una advertencia cuando realizo el comando:
mapview(data.frame)
Warning message:
In leaflet_sfc(sf::st_geometry(x), map = map, zcol = zcol, color = clrs, :
the supplied feature layer has more points/vertices than the set threshold.
using special rendering function, hence things may not behave as expected from a standard leaflet map,
e.g. you will likely need to zoom in to popup-query features
to see the number of points/vertices of the layer use 'npts(x)'
to see the threshold for the feature type use 'mapview:::getMaxFeatures(x)'
to adjust the threshold use argument 'maxpoints'
Y luego intento exportar como html y me sale:
Error de ejecución del código R
Y el archivo guardado es de 0 kb.
¿Existe una solución o un remedio con alguna otra función del paquete?