Leaflet Nectarivore is a plugin to create layers based on remote services (Overpass, Osmose, etc.). Its name is a nod to Leaflet Omnivore, which eats several kind of files to display informations on a Leaflet map. Leaflet Nectarivore gathers nectar from remote services to create its layers on the map.
The first two supported services are Overpass and Osmose. See the demo pages here:
$ npm install leaflet-nectarivore
import Nectarivore from 'leaflet-nectarivore';
const attributions = [
'Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors',
'POI via <a href="https://www.overpass-api.de">Overpass API</a>',
];
const tileLayer = new L.TileLayer(
'http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png',
{ attribution: attributions.join(', ') }
);
const overpassLayer = Nectarivore.overpass({
minZoom: 15,
endPoint: 'https://overpass-api.de/api',
query: 'node({{bbox}})["amenity"="post_box"];out;',
});
const map = new L.Map('my-map')
.addLayer(tileLayer)
.addLayer(overpassLayer)
.setView(L.latLng(44.84061, -0.5724), 15);
In order to get a valid query the Overpass-turbo IDE might help.
import Nectarivore from 'leaflet-nectarivore';
const attributions = [
'Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors',
'POI via <a href="http://wiki.openstreetmap.org/wiki/Osmose">Osmose API</a>',
];
const tileLayer = new L.TileLayer(
'http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png',
{ attribution: attributions.join(', ') }
);
const osmoseLayer = L.Nectarivore.osmose({
minZoom: 15,
endpoint: 'https://osmose.openstreetmap.fr/api/0.2',
language: 'en',
item: 8120,
status: 'open',
});
const map = new L.Map('my-map')
.addLayer(tileLayer)
.addLayer(osmoseLayer)
.setView(L.latLng(44.84061, -0.5724), 15);
{
debug: false,
minZoom: 15,
endpoint: '',
loadedBounds: [],
markerIcon: null,
timeout: 30 * 1000, // Milliseconds
retryOnTimeout: false,
noInitialRequest: false,
beforeRequest: function() {},
afterRequest: function() {},
onSuccess: function(data) {},
onError: function(xhr) {},
onTimeout: function(xhr) {},
}
{
endpoint: 'https://overpass-api.de/api',
query: `(
node({{bbox}})[organic];
node({{bbox}})[second_hand];
);
out qt;`
}
{
endpoint: 'https://osmose.openstreetmap.fr/api/0.2',
language: 'en'
}
$ git clone git@github.com:osmlab/leaflet-nectarivore.git leaflet-nectarivore
$ cd leaflet-nectarivore
$ npm install
$ npm run watch
$ npm version patch -m "release: %s"
$ npm publish
npm version
tests the code and build it. Then it upgrades the package version number according to the used keyword (patch, minor or major) and commit the modifications in Git (with a proper version tag). Finally, it pushes it to repository with the tag.
Please do!
All the plugin logic is in the services/baseService.js
file. It is then extended by the service logic by creating specific fies in the services
folder.
So in order to add another service you have to:
- Create your service file in the
services
folder by duplicatingoverpass.js
orosmose.js
. - Replace the service defaultOptions by yours.
- Replace the logic, you just have to let 4 methods:
- constructor: Called at the plugin instanciation.
- clear: Called when the query/endpoint is replaced by the user.
- buildRequestBounds: Called when the map is moved. It lets you modify the requested bounds.
- buildRequestPromise: Called to build the actual request to the service. It has to return a Promise.
- Reference your new service file in the
service/index.js
file. - Add some tests for your service logic ;) In the
services/__tests__
folder. - Add a demo page in the
docs
folder. - Document your service in the
README.md
file