geojson-resources
v1.1.0
Published
Statis GeoJSON resources
Downloads
53
Readme
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/[email protected]/world.json'),
)
.then(function(arg) {
L.geoJSON(arg[0]).addTo(map);
});