Skip to content
forked from RCura/webmaps

An R package for creating 'slippy web maps' from spatial data. Easily create HTML pages that show your points, lines, and polygons on world map data.

License

Notifications You must be signed in to change notification settings

fabricebrito/webmaps

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webmaps

An R package for creating 'slippy web maps' from spatial data. Easily create HTML pages that show your points, lines, and polygons on world map data.

  • Author : Barry Rowlingson
  • Maintainer : Robin Cura

webmaps screenshot

Setup

This package can be installed using the devtools package, running :

require(devtools)
install_github(repo = "webmaps", username = "RCura")

Usage

library(webmaps)
state <- data.frame(state.x77)
state$Name <- rownames(state)
state$color <- strtrim(rainbow(n=nrow(state)), 7)
coordinates(state) <- cbind(state.center$x, state.center$y)

webmap(layer(layerData = state,
             name = "States",
             lstyle(
                 pointRadius = '${Murder}',
                 fillColor = "${color}",
                 strokeColor = "black",
                 fillOpacity = 0.4)),
       title="Test",
       htmlFile="index.html",
       browse=TRUE,
       toShiny=FALSE)

About

An R package for creating 'slippy web maps' from spatial data. Easily create HTML pages that show your points, lines, and polygons on world map data.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published