Skip to content

idris-maps/idris-overpass-browser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

idris-overpass

Query the overpass API. Returns a GeoJSON collection.

WORKS ONLY IN THE BROWSER For use in Node, see idris-overpass

Install

With NPM

$ npm install idris-overpass-browser

and

var getOSM = require('idris-overpass-browser')

Directly in the HTML document

Download idris-overpass-browser.js here

<script src="idris-overpass-browser.js"></script>

Usage

getOSM(config, callback)

var config = {
	bbox: [7.590,47.560,7.595,47.563],
	kv: [{key: 'highway', value: '*'}]
}

getOSM(config, function(geojson) {
	console.log(geojson)
})

config

  • bbox (required) [minX, minY, maxX, maxY]
  • kv (required) an array of objects {key: ... , value: ... }
  • timeout (optional)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published