Maps filters for Jinja2
Project description
jinja2_maps is a set of filters to display locations in Jinja2 templates.
Install
pip install jinja2_maps
Support
Service |
URL |
Map |
---|---|---|
OpenStreetMap |
Yes |
Yes |
Google Maps |
Yes |
|
Apple Maps |
Yes |
|
Bing Maps |
Yes |
|
Mappy |
Yes |
Both Python 2.x and 3.x are supported.
Usage
All filters take a location as a dict with latitude and longitude keys. You can also pass an object with these attributes.
Before using any template you need to add the filters to your Jinja2 environment:
from jinja2_maps import activate_filters
activate_filters(your_env)
If using Flask you can do the following:
from jinja2_maps import activate_filters
activate_filters(app.jinja_env)
URLs
<a href="{{ your_location | osm_url }}">Check on OpenStreetMap</a>
<a href="{{ your_location | gmaps_url }}">Check on Google Maps</a>
<a href="{{ your_location | apple_maps_url }}">Check in Maps</a>
<a href="{{ your_location | bing_maps_url }}">Check on Bing Maps</a>
<a href="{{ your_location | mappy_url }}">Check on Mappy</a>
URLs also support giving the zoom level (default is 16):
<a href="{{ your_location | osm_url(zoom=12) }}">Check on OpenStreetMap</a>
Maps
{{ your_location | osm_map(width=500, height=400) }}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jinja2_maps-0.2.0.tar.gz
(5.2 kB
view details)
File details
Details for the file jinja2_maps-0.2.0.tar.gz
.
File metadata
- Download URL: jinja2_maps-0.2.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e7a755540f4fb06ab97b23b885fc064667ad395b93474ef2b46a22e630f54d4 |
|
MD5 | c63f68ba64f779e6668b927501644b1c |
|
BLAKE2b-256 | 2adb8a6419327b13355349981bdce6aeebe7e703f53b86fa3f80014c90cc731e |