A Python package for geospatial analysis and interactive mapping in a Jupyter environment.
54
Evaluation — 54%
↓ 0.80xAgent success when using this tile
Compose an interactive map that combines polygon and point vectors with attribute-driven styling and a shareable HTML export.
@generates
from pathlib import Path
from typing import Dict, Union
Color = Union[str, tuple]
def build_vector_map(
polygons_path: Union[str, Path],
points_path: Union[str, Path],
category_field: str,
style_map: Dict[str, Color],
output_html: Union[str, Path],
):
"""Returns an interactive map displaying styled polygon and point data and writes it to an HTML file."""Provides vector ingestion, styling, and interactive map export.
Install with Tessl CLI
npx tessl i tessl/pypi-leafmapdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10