
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
overpass-layer
Advanced tools
Show a Leaflet layer using OpenStreetMap data from Overpass API via OverpassFrontend.
Show a Leaflet layer using OpenStreetMap data from Overpass API via overpass-frontend.
Check the Demos and how to set them up.
// Connect to Overpass API - you can also use a (small) .osm file as data source
var overpassFrontend = new OverpassFrontend('//overpass-api.de/api/interpreter')
// Create the layer
var layer = new OverpassLayer({
overpassFrontend: overpassFrontend,
query: 'nwr[building]',
minZoom: 16,
feature: {
title: '{{ tags.name }}',
style: { width: 1, color: 'black' }
}
})
// Create a LeafletJS map
var map = L.map('map').setView([ 51.5, 0.0 ], 16)
// Add the layer to the map
layer.addTo(map)
// ... or use a control
//var layerControl = L.control({}, { 'Buildings': layer })
//layerControl.addTo(map)
Create a Layer with an Overpass query and optional options.
Options:
id: an optional id, which will be passed as sublayer_id to twig templates (see below).
query: e.g. node[natural=tree];. Combine queries with: (way[building];relation[building];);. Optionally zoom-dependend queries can be given by using an object with the minimum zoom level as index, e.g. { 13: 'way[landuse=forest]', 15: '(way[landuse=forest];node[natural=tree];)' }: zoom levels 13 and 14 all forests will be shown, from zoom level 15 all forests and trees.
overpassFrontend: An OverpassFrontend object (defaults to the global variable overpassFrontend)
attribution: a HTML string with attribution information
minZoom: Show layer only from the given zoom level (default: 16)
maxZoom: Show layer only up to the given zoom level (default: no limit)
bounds: Show only items intersecting this GeoJSON polygon/multipolygon (default: null).
styles: Array of style-id which should be shown. Default: ['default']. May be overridden by a feature dependant styles array. Can be a comma-separated string.
updateAssets: a function which will be called for all map feature specific HTML contexts. It can be used to update URLs of imgs. It will be passed the following parameters: domNode (the node which should be updated), objectData (data of the map feature), layer (the layer object).
feature: an object describing how the feature will be formated resp. styled. Each of the values may be either a function which will be passed an OverpassObject or a string which will be processed with the templating language TwigJS:
{"width":2,"fillColor":"red"}.color: red\nwidth: 2) or a JSON string (e.g. {"color":"red","width":2} - if you use the json_encode filter, disable autoescape or use the raw filter (e.g. {{ {"width":2}|json_encode|raw }}). See below for possible patterns.queryOptions: options for OverpassFrontend.BBoxQuery.
styleNoBindPopup: array, list of styles where popup should not bind to. Default: []
stylesNoAutoShow: array, list of styles which should not automatically be shown.
The following feature properties define behaviour in lists. Default prefix is 'list':
const: an object variable which is available as prefix in twig functions. See below.
Without extensions installed, the following style parameters are available:
| Parameter | Type | Default | Remarks |
|---|---|---|---|
| stroke | boolean | true | |
| color | color | #3388ff | |
| width | length | 3 | |
| opacity | float | 1.0 | |
| lineCap | string | round | |
| lineJoin | string | round | |
| dashArray | mutiple values of length | '' | |
| dashOffset | length | '' | |
| fill | boolean | depends | |
| fillColor | color | depends | |
| fillOpacity | float | 0.2 | |
| fillRule | string | 'evenodd' | |
| radius | float | depends | Circle and CircleMarker only |
| bubblingMouseEvents | boolean | true | |
| interactive | boolean | true | |
| pane | string | 'overlayPane' | |
| attribution | string | null | Override default attribution |
| smoothFactor | float | 1.0 | Polyline only |
| zIndex | float | 0.0 | Order of features (higher = front). This is not very efficient, using 'pane' is faster. |
Types:
undefined, null, false, "false", 0, "0", "".1, 0.5.The data of an object is available as patterns. Tags and Meta information is only available, if these properties have been downloaded (see option 'properties'). Variables will automatically be HTML escaped, if not the filter raw is used, e.g.: {{ tags.name|raw }}.
The templates will be rendered when the object becomes visible and when the zoom level changes.
id (the id of the object is always available, prefixed 'n' for nodes, 'w' for ways and 'r' for relations; e.g. 'n1234')osm_id (the numerical id of the object)sublayer_id (the id of the sub layer)type ('node', 'way' or 'relation')tags.* (all tags are available with the prefix tags., e.g. tags.amenity)meta.timestamp (timestamp of last modification)meta.version (version of the object)meta.changeset (ID of the changeset, the object was last modified in)meta.user (Username of the user, who changed the object last)meta.uid (UID of the user, who changed the object last)members: Array of member objects (if loaded)members[].id: id of membermembers[].tags: tags of member (if loaded)members[].meta: meta of member (if loaded)members[].sequence: member is nth elementmembers[].role: member has rolemasters: Array of links to current master objects:masters[].id: id of relationmasters[].tags: tags of relationmasters[].meta: meta of relationmasters[].sequence: current object is nth membermasters[].role: current object has rolemap.zoom: Current zoom levelmap.metersPerPixel: size of a pixel at the map centerconst.* (Values from the 'const' option)Examples:
Amenity: {{ tags.amenity }}: might render as "Amenity: restaurant"
{% if tags.cuisine=='pizza' %}🍕{% else %}🍴{% endif %}: might render as "🍴"
{% for k, v in tags %}{{ k }}: {{ v }}<br/>{% endfor %}: list all tags with "key: value"
<a href="{{ tags.website }}">{{ tags.name }}</a>: Create a HTML link to the website with the tag name as title.
You can access the twig instance via OverpassLayer.twig for extending (e.g. with custom functions or filters). Use OverpassLayer.twig.extendFunction(...).
If you set an arbitrary value within a twig template (e.g.: {% set foo = "bar" %}), it will also be available in further templates of the same object by using (e.g.: {{ foo }}). The templates will be evaluated in the order as they are defined.
Add layer to the given map.
Forces a boundary (as with option bounds). Accept a boundary of the type
GeoJSON.
Removes the OverpassLayer and all its features.
Calculates the object data for each visible feature and call the update event.
Load the given object, even if it should not be shown in the given layer / at the current zoom level.
The callback will be called with the following parameters: err, ob (see event add).
Show the given object, even if it should not be shown in the given layer / at the current zoom level.
The options parameter influences how the object should be shown. (Consecutive calls of show() will override the options of previous calls).
Available options:
The callback will be called with the following parameters: err, ob, data (see event add).
Hide the given object, resp. remove show options. If it is shown due to layer definition, it will still be visible.
Return twig data for object (for rendering).
Set an additional filter. Will intiate a check_update_map(). See OverpassFrontend.Filter for details.
You can define several layouts, which will be rendered for each object. The rendered objects can be accessed from the layouts attribute of the data parameter of the events (e.g. add, update, ...).
The layout parameter is a string in TwigJS template language. In contrast to the feature-templates, the result of the feature evaluation is available with the 'object' prefix. Also, autoescapeing is disabled (because feature templates render to HTML).
The layout paramter could also be a function, which will be called with an object with the object property. If the function returns null, the content of the popup will not be updated.
Example: {{ object.title }}.
get the degrees by which the world should be shifted, to show map features at the current view port (e.g. when you wrap over -180 or 180 longitude). E.g. near lon 180, the Eastern hemisphere (lon 0 .. 180) does not have to be shifted, the Western hemisphere (lon -180 .. 0) has to be shifted by 360 degrees.
Returs an array with two elements: degrees to shift the Western hemisphere, degrees to shift the Eastern hemisphere. Each value is a multiple of 360.
Will be called when an object appears on the map (e.g. load from server, zoom in, viewport moves in)
Parameter:
ob: an OverpassObject objectdata.id: Unique ID of the object (e.g. 'w1234')data.object is an instance of OSMObject (see OverpassFrontend for details)data.data are the parsed options for the current object.data.features: an object with all leaflet feature which show the object. Index is the id of the style (e.g. 'highlight' for 'style:highlight'. 'default' for 'style').data.feature: the first leaflet feature (of the styles array). it will be used for binding popups to.data.featureMarker: the leaflet marker, if a marker is shown on the objectdata.layouts: The rendered version of all layouts as object (indexed by the layout id)data.popup: the popup, which is attached to the object (even if it is not shown)data.styles: array of style-ids which are currently activedata.isShown: whether the object is currently shown on the map (boolean)data.listItem: DOM node of the list item which shows this object (if item is shown and a list has been added for this layer)Will be called when an object disappears from the map (e.g. zoom out, pan out, ...)
See add for the description of parameters.
Will be called every time when the zoom level changes. Occurs instantly after zoom level change for each object, before assessing if the object is visible at the current zoom level.
See add for the description of parameters.
Called every time, when the object is being re-calculated (also when zoom level changes).
See add for the description of parameters.
Called for every object on re-calculation. Result is the twigData which will used for evaluating each object. Any listeners may modify this result object.
See add for the description of other parameters.
Emitted when the layer gets added.
Emitted when the layer gets removed.
npm install --save leaflet-textpath
Include script:
<script src="node_modules/leaflet-textpath/leaflet.textpath.js"></script>
The style of the text labels can be set with these parameters:
| Field | Type | Default | Description |
|---|---|---|---|
| text | string | null | Label to show along the line (null for no label). (this impacts performace, as SVG labels are used). |
| textRepeat | boolean | false | Specifies if the text should be repeated along the polyline. |
| textCenter | boolean | false | Centers the text according to the polyline's bounding box. |
| textOffset | float | 0 | Set an offset to position text relative to the polyline. |
| textBelow | boolean | false | Show text below the path. |
| textFill | color | black | Color of the text. |
| textFillOpacity | opacity | 1.0 | Text opacity. |
| textFontWeight | string | normal | Boldness or lightness of the glyphs used to render the text. |
| textFontSize | font size | 12px | Font size of the text. |
| textLetterSpacing | float | 0 | Extra letter spacing of the text. |
npm install --save leaflet-polylineoffset
Include script:
<script src="node_modules/leaflet-polylineoffset/leaflet.polylineoffset.js"></script>
Each style can have an 'offset' parameter, which will offset the line. It's of type 'length', so you can use units.
npm install --save leaflet-polylinedecorator
Include script:
<script src="node_modules/leaflet-polylinedecorator/dist/leaflet.polylineDecorator.js"></script>
Each style can have several patterns with this additional options (where X identifies the pattern. X is an arbitrary string without dashes, e.g. '', '0', 'A', 'foobar'):
length; support for percentage). Default: 0.length; support for percentage). Default: 0.length; support for percentage). Defines the distance between each consecutive symbol's anchor point.length). Default: 0.Depending on the type of pattern, the following options are available:
arrowHead:
patternX-polygon: true/false
patternX-pixelSize: size of pattern (type length, you may specify units)
patternX-headAngle: Angle of the digits
patternX-angleCorrection: degrees (see #88)
dash:
patternX-pixelSize: size of pattern (type length, you may specify units)
marker:
patternX-rotate: false
patternX-angleCorrection: degrees
To set path options use the prefix patternX-path-, e.g. patternX-path-width or patternX-path-color.
FAQs
Show a Leaflet layer using OpenStreetMap data from Overpass API via OverpassFrontend.
The npm package overpass-layer receives a total of 106 weekly downloads. As such, overpass-layer popularity was classified as not popular.
We found that overpass-layer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.