1.1.0 • Published 7 years ago

geojson-resources v1.1.0

Weekly downloads
45
License
ISC
Repository
github
Last release
7 years ago

geojson-resources

Statis GeoJSON resources

Install

npm i geojson-resources

Usage

Loading by JQuery and show in Leaflet map directly in your page:

$.when(
  $.getJSON('https://unpkg.com/geojson-resources@1.1.0/world.json'),
)
.then(function(arg) {
  
  L.geoJSON(arg[0]).addTo(map);
  
});