One import. A few method calls. A full interactive map.
Documentation: https://egarciamendez.github.io/mapyta
Source Code: https://github.com/egarciamendez/mapyta
Build OpenStreetMap visualizations with hover tooltips, choropleths, heatmaps, and export to HTML or PNG all from Shapely geometries.
Perfect for geotechnical site plans, infrastructure overviews, or any spatial data visualization where you want more control than static images but don't need the full power of a GIS.
Mapyta is standing on the shoulders of giants like Folium and Leaflet, but it's designed to be more intuitive and Pythonic for users who are already familiar with Shapely and GeoPandas. It's not trying to replace a full GIS, but rather to provide a simple way to create interactive maps without needing to learn a whole new set of tools.
👉 See the Showcase — every feature as a live, interactive map on a single page.
- 🗺️ Shapely-native — pass
Point,Polygon,LineStringdirectly, including multi-geometries - 📝 Markdown/HTML hover and popup text — bold, italic, links, lists, and code in tooltips
- 📌 Emoji & icon markers — any text or Font Awesome icons as markers
- 🎨 Choropleth & heatmaps — color-coded maps from numeric data
- 📊 GeoPandas integration —
Map.from_geodataframe()one-liner - 🗂️ DataFrame support —
add_dataframe()works with any Pandas or Polars DataFrame with a WKT geometry column - 🌐 Auto CRS detection — RD New (EPSG:28992) coordinates transform automatically
- 📤 Export anywhere — HTML, PNG, SVG, GeoJSON, async variants, and
BytesIObuffers - 🧩 Feature groups — toggleable layers with a built-in layer control
- 🔌 Set of tile providers — OpenStreetMap, CartoDB, Esri, Stamen, and Kadaster
Mapyta requires Python 3.12+.
uv add mapyta
# or
pip install mapytaExporting maps to PNG/SVG images additionally needs a headless browser (Chrome,
Chromium, or Edge) and the export extra:
uv add "mapyta[export]"
# or
pip install "mapyta[export]"Create your first map:
from shapely.geometry import Point
from mapyta import Map
m = Map(title="Hello Utrecht")
m.add_point(
point=Point(5.121311, 52.090648),
tooltip="**Utrecht**",
popup="**Utrecht**\nCity in the Netherlands\nPopulation: ~350k",
caption="UTR",
)
m.to_html("hello.html")Open hello.html in any browser and you're done.
Want the map as an image instead? Get raw PNG bytes or a buffer, no file needed:
png_bytes = m.to_image() # bytes, for an HTTP response or an email attachment
buf = m.to_bytesio() # io.BytesIO, e.g. for Flask/FastAPI/DjangoSee the Showcase for choropleths, heatmaps, clusters, drawing tools, and more — each as a live, interactive map — or work through the Tutorial one concept at a time.
Issues and pull requests are welcome. To set up a local development environment:
git clone https://github.com/egarciamendez/mapyta
cd mapyta
uv sync --all-extras --all-groups
uv run pytestPlease open an issue to discuss substantial changes before starting.
This project is licensed under the terms of the MIT license.