All Projects → rstudio → Leaflet

rstudio / Leaflet

Licence: other
R Interface to Leaflet Maps

Programming Languages

javascript
184084 projects - #8 most used programming language
r
7636 projects

Projects that are alternatives of or similar to Leaflet

GeoArrays.jl
Simple geographical raster interaction built on top of ArchGDAL, GDAL and CoordinateTransformations
Stars: ✭ 42 (-93.7%)
Mutual labels:  gis, spatial
AOI
An R 📦 to find, process, and describe "areas of interest"
Stars: ✭ 27 (-95.95%)
Mutual labels:  gis, spatial
pygeopackage
A Python package to read/write spatial data to a geopackage.
Stars: ✭ 33 (-95.05%)
Mutual labels:  gis, spatial
Openlayers Editor
OpenLayers Editor
Stars: ✭ 138 (-79.31%)
Mutual labels:  gis, spatial
geosapi
R interface to GeoServer REST API
Stars: ✭ 26 (-96.1%)
Mutual labels:  gis, spatial
rsgislib
Remote Sensing and GIS Software Library; python module tools for processing spatial data.
Stars: ✭ 103 (-84.56%)
Mutual labels:  gis, spatial
de9im
DE-9IM spatial predicate library implemented in Javascript.
Stars: ✭ 22 (-96.7%)
Mutual labels:  gis, spatial
cleangeo
Cleaning geometries from spatial objects in R
Stars: ✭ 43 (-93.55%)
Mutual labels:  gis, spatial
spatialwidget
Utility package to convert R data into JSON for use in htmlwidget mapping libraries
Stars: ✭ 17 (-97.45%)
Mutual labels:  gis, spatial
deegree3
Official deegree repository providing geospatial core libraries, data access and advanced OGC web service implementations
Stars: ✭ 118 (-82.31%)
Mutual labels:  gis, spatial
Spatial pre2021
This repo has been archived. The latest version of the GIS and Spatial Analysis online book is at https://github.com/mgimond/Spatial
Stars: ✭ 88 (-86.81%)
Mutual labels:  gis, spatial
NHibernate.Spatial
NHibernate.Spatial is a library of spatial extensions for NHibernate, and allows you to connect NHibernate to a spatially enabled database and manipulate geometries in Linq or HQL using NetTopologySuite, providing you with a fully integrated GIS programming experience.
Stars: ✭ 38 (-94.3%)
Mutual labels:  gis, spatial
Koop
🔮 Transform, query, and download geospatial data on the web.
Stars: ✭ 505 (-24.29%)
Mutual labels:  gis, spatial
Blendergis
Blender addons to make the bridge between Blender and geographic data
Stars: ✭ 4,642 (+595.95%)
Mutual labels:  gis
Flyover Reverse Engineering
Reversing Apple's 3D satellite mode
Stars: ✭ 485 (-27.29%)
Mutual labels:  gis
Fmm
Fast map matching, an open source framework in C++
Stars: ✭ 359 (-46.18%)
Mutual labels:  gis
Stars
Spatiotemporal Arrays, Raster and Vector Data Cubes
Stars: ✭ 363 (-45.58%)
Mutual labels:  spatial
Leaflet Search
Search stuff in a Leaflet map
Stars: ✭ 536 (-19.64%)
Mutual labels:  gis
Qgis Earthengine Examples
A collection of 300+ Python examples for using Google Earth Engine in QGIS
Stars: ✭ 482 (-27.74%)
Mutual labels:  gis
Whitebox Tools
An advanced geospatial data analysis platform
Stars: ✭ 362 (-45.73%)
Mutual labels:  gis

An R Interface to Leaflet Maps

R build status CRAN RStudio mirror downloads RStudio community

Leaflet is an open-source JavaScript library for interactive maps. This R package makes it easy to create Leaflet maps from R.

library(leaflet)
m = leaflet() %>% addTiles()
m  # a map with the default OSM tile layer

m = m %>% setView(-93.65, 42.0285, zoom = 17)
m

m %>% addPopups(-93.65, 42.0285, 'Here is the <b>Department of Statistics</b>, ISU')

Installation

You can install this package from CRAN, or the development version from GitHub:

# CRAN version
install.packages('leaflet')

# Or Github version
if (!require('devtools')) install.packages('devtools')
devtools::install_github('rstudio/leaflet')

Documentation

In addition to the usual R package documentation, we also have extensive docs and examples at: http://rstudio.github.io/leaflet You may use GitHub issues to file bug reports or feature requests, and ask questions on StackOverflow or in the Shiny mailing list.

Development

leaflet's JavaScript build tools use Node.js, along with yarn to manage the JavaScript packages.

Install yarn using the official instructions.

You can test that Node.js and yarn are installed properly by running the following commands:

node --version
yarn --version

To make additions or modifications to the JavaScript htmlwidgets binding layer, you must have all Node.js dependencies installed. Now you can build/minify/lint/test using yarn build, or run in "watch" mode by just running yarn watch. JS sources go into javascript/src and tests go into javascript/tests.

# install dependencies
yarn

# compile
yarn build

# watch
yarn watch

License

This package is licensed to you under the terms of the GNU General Public License version 3 or later.

Copyright 2013-2015 RStudio, Inc.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].