Static Map Render
static_map_renderRender static map images showing routes, isochrones, round-trips, or location-centered maps. Returns a PNG of the rendered map.
Instructions
Render visual map images of routes, isochrones, round-trips, and static locations. Supports route rendering with automatic calculation, pre-calculated path overlays, area views, and location-centered maps. Returns a PNG image of the rendered map.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| render_type | Yes | What to render on the map. Exactly one of: "routing": a calculated route path between waypoints (use RoutingParametersSchema). "isochrone": reachability polygon(s) from an origin within time/distance limits (use IsochroneParametersSchema). "round_trip": a circular loop starting and ending at the same point (use RoundTripParametersSchema). "map_location": a static basemap centered on an area or fit to a bounding box (use SimpleMapParametersSchema). | |
| output_format | Yes | Output image format as a full MIME type. Exactly one of: "image/png" (default; lossless, supports transparency, best for diagrams/markers), "image/jpeg" (lossy; smallest file size; NO transparency), "image/webp" (modern; good compression; supports transparency). | |
| parameters | Yes | Parameters for the selected `render_type`. The shape MUST match `render_type`: "routing": RoutingParametersSchema; "isochrone": IsochroneParametersSchema; "round_trip": RoundTripParametersSchema; "map_location": SimpleMapParametersSchema. |