1.0.0 • Published 9 years ago
idris-overpass-browser v1.0.0
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-browserand
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)
 
1.0.0
9 years ago