
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
geojson-popup
Advanced tools
Add GeoJSON-based templated popups to your Leaflet map. See the audio-player example.
Add GeoJSON-based templated popups to a Leaflet map. See the audio-player example(s).
Easily create interactive maps, with popups containing structured data, for example, audio players.
Read the introductory blog post.
git clone https://github.com/nfreear/popup-geojson-map geojson-popup
cd geojson-popup
npm install && npm run build && npm test
npm start
HTML containing a template, with placeholders, title
and audio_url
<p id="mapid"></p>
<script type="text/html" id="popup-template">
<div class="audio-popup">
<h2><%= title %></h2>
<audio src="<%= audio_url %>" controls ></audio>
</div>
</script>
<script> MAP_CFG = { geoJson: '{cdn}/data/world-audio-geo.json' } </script>
<script src="https://unpkg.com/geojson-popup@2.4.0#._.js"></script>
GeoJSON, with properties corresponding to the template placeholders, title
and audio_url
:
"features": [
{
"type": "Feature",
"properties": {
"title": "raining on the roof of Jennie Lee Building.wav",
"audio_url": "https://freesound.org/data/previews/92/92744_1315834-lq.mp3"
},
"geometry": {
"type": "Point",
"coordinates": [ -0.7110, 52.0241 ]
}
}
]
marker-symbol
GeoJSON with marker-symbol
, and built in support for Maki icons:
<script>
MAP_CFG = {
geoJson: 'https://example.org/...charging-map.geo.json',
icon: 'maki' // 'default', 'maki' or 'div'.
}
</script>
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"marker-symbol": "fuel",
"marker-class": "custom",
"marker-html": "<span>HTML</span>",
"title": "Estates charging point (7 kW)"
},
"geometry": {
"type": "Point",
"coordinates": [ -0.71138, 52.02565 ]
}
}
]
}
Software & specs:
Map tiles:
Sources for example data & audio files:
I'm renaming the NPM package from popup-geojson-map
to the clearer geojson-popup
.
(I'll probably re-name the GitHub repo. too.) Sorry for any hassle!
© 2016-2021 Nick Freear, | License: MIT.
FAQs
Add GeoJSON-based templated popups to your Leaflet map. See the audio-player example.
The npm package geojson-popup receives a total of 4 weekly downloads. As such, geojson-popup popularity was classified as not popular.
We found that geojson-popup demonstrated a not healthy version release cadence and project activity because the last version was released 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.