Super simple on-liner maps in python.
Project description
Simplest Maps
Super simple on-liner maps in python.
Installation
pip3 install simplestmaps
Usage
This lib aims to be super simple to use. For instance, to draw a markers and an area, you could do something like this:
from simplestmaps import draw_map, area, marker
draw_map(
marker(-31.2526, -61.4917, popup="my hometown"),
area([(-31.2741, -61.5105), (-31.2872, -61.5137), (-31.2895, -61.5003), (-31.2764, -61.4973)], color="green", popup="our airfield"),
)
It can even do more advanced stuff, like plotting the contents of a geojson file (points, areas, lines):
from simplestmaps import draw_map, geojson
draw_map(
geojson("./docs/readme_example.geojson"),
)
SimplestMaps can plot markers, dots, labels (text), custom html, lines, areas and geojsons, and all of that can be combined in every map.
And every element plotted into the map is also customizable (colors, fonts, sizes, popups, etc).
More demos and docs
Here are a good set of examples that showcase (and document) all of the supported features:
Take a look at everything that's possible with so little code!
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
File details
Details for the file simplestmaps-1.7.0.tar.gz
.
File metadata
- Download URL: simplestmaps-1.7.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0103fe07da0b6e247f3f6aa4dccc5570d662a2e50fda841d23ac5be209056dc |
|
MD5 | 0ac2542d257e26fb178c07d3ab6f1787 |
|
BLAKE2b-256 | 0b0596361879641b9b7396b2b93f38ce215441526bc339e7da34a4e50de57973 |