A plugin that bundles Leaflet.js for Datasette
Project description
datasette-leaflet
Datasette plugin adding the Leaflet JavaScript library.
A growing number of Datasette plugins depend on the Leaflet JavaScript mapping library. They each have their own way of loading Leaflet, which could result in loading it multiple times (with multiple versions) if more than one plugin is installed.
This library is intended to solve this problem, by providing a single plugin they can all depend on that loads Leaflet in a reusable way.
Plugins that use this:
Installation
You can install this plugin like so:
datasette install datasette-leaflet
Usually this plugin will be a dependency of other plugins, so it should be installed automatically when you install them.
Usage
The plugin makes leaflet.js and leaflet.css available as static files. It provides two custom template variables with the URLs of those two files.
{{ datasette_leaflet_url }}is the URL to the JavaScript{{ datasette_leaflet_css_url }}is the URL to the CSS
These URLs are also made available as global JavaScript constants:
datasette.leaflet.JAVASCRIPT_URLdatasette.leaflet.CSS_URL
The JavaScript is packaed as a JavaScript module. You can dynamically import the JavaScript from a custom template like this:
<script type="module">
import('{{ datasette_leaflet_url }}')
.then((leaflet) => {
/* Use leaflet here */
});
</script>
You can load the CSS like this:
<link rel="stylesheet" href="{{ datasette_leaflet_css_url }}">
Or dynamically like this:
<script>
let link = document.createElement('link');
link.rel = 'stylesheet';
link.href = '{{ datasette_leaflet_css_url }}';
document.head.appendChild(link);
</script>
Here's a full example that loads the JavaScript and CSS and renders a map:
<script type="module">
window.DATASETTE_CLUSTER_MAP_TILE_LAYER = "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png";
window.DATASETTE_CLUSTER_MAP_TILE_LAYER_OPTIONS = {"maxZoom": 19, "detectRetina": true, "attribution": "© <a href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap</a> contributors"};
let link = document.createElement('link');
link.rel = 'stylesheet';
link.href = '{{ datasette_leaflet_css_url }}';
document.head.appendChild(link);
import('{{ datasette_leaflet_url }}')
.then((leaflet) => {
let div = document.createElement('div');
div.style.height = '400px';
document.querySelector('.content').appendChild(div);
let tiles = leaflet.tileLayer(
window.DATASETTE_CLUSTER_MAP_TILE_LAYER,
window.DATASETTE_CLUSTER_MAP_TILE_LAYER_OPTIONS
);
let map = leaflet.map(div, {
center: leaflet.latLng(0, 0),
zoom: 2,
layers: [tiles]
});
});
</script>
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file datasette-leaflet-0.2.2.tar.gz.
File metadata
- Download URL: datasette-leaflet-0.2.2.tar.gz
- Upload date:
- Size: 113.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd4e634304be392ae6f7de770d4f22b95a37caecd676a35faeb6200da9423bc
|
|
| MD5 |
e442179a8137242282f7c102a0ed0380
|
|
| BLAKE2b-256 |
886e444b1ded1cd8f71cd86f4461c06ee88be2bb0682b0d54aa942c323f91411
|
File details
Details for the file datasette_leaflet-0.2.2-py3-none-any.whl.
File metadata
- Download URL: datasette_leaflet-0.2.2-py3-none-any.whl
- Upload date:
- Size: 112.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd88c25666e7680b25b4c6e5546bd02c9f5836bbc0fee61042dbb6b93d4139f0
|
|
| MD5 |
a94352bb9f9cf2cea7a49bbb99d0e41f
|
|
| BLAKE2b-256 |
d0df61e8a7d601a2c4992f7e9f38a6b983a9f9b873fbeebe4248090eea4b5d87
|