Install
openclaw skills install @agentpmt/map-generator-with-markersMap Generator With Markers: Generate static maps with markers, paths, and labels. Multiple map types (roadmap, satellite, hybrid, terrain). Stored 7 days. Use when an agent needs map generator with markers, creating route maps with waypoints, generating location markers for reports, visualizing geographic data distributions, creating satellite view property maps, create map, points, map type through AgentPMT-hosted remote tool calls. Discovery terms: map generator with markers.
openclaw skills install @agentpmt/map-generator-with-markersLast updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Generate custom static map with markers and optional paths connecting points. This tool creates map images with multiple markers that can be customized with colors, labels, and sizes, supports drawing paths between points with configurable colors and weights, offers multiple map types including roadmap, satellite, hybrid, and terrain views, allows precise zoom control and high DPI scaling for better image quality, and automatically stores generated images in cloud storage with 7-day expiration. Perfect for creating location-based visualizations, route maps, and geographic data presentations without requiring interactive map embedding.
Generate static map images with custom markers and optional connecting paths between points.
Generate a static map image with one or more markers plotted at specific coordinates.
Required Fields:
points (array): One or more point objects to plot. Each point requires:
latitude (number): Latitude coordinate (-90 to 90)longitude (number): Longitude coordinate (-180 to 180)Optional Point Fields:
label (string): Single character A-Z or 0-9. Only displayed on default/mid size markers.color (string): Marker color name or hex code (e.g., "red", "blue", "0xFFFF00")size (string): Marker size -- "tiny", "small", or "mid"Optional Map Fields:
map_type (string): "roadmap" (default), "satellite", "hybrid", or "terrain"image_width (integer): Width in pixels, max 640. Default: 640image_height (integer): Height in pixels, max 640. Default: 640scale (integer): 1 (default) or 2 for high-DPI/retina displayszoom (integer): Zoom level 0-21. Auto-calculated if omitted.marker_color (string): Default color for all markers (overridden by per-point color)marker_size (string): Default size for all markers (overridden by per-point size)draw_path (boolean): Set true to draw a line connecting points in order. Requires at least 2 points.path_color (string): Path line color in hex (e.g., "0xFF0000"). Default: "0x0000ff"path_weight (integer): Path line thickness in pixels, 1-20. Default: 5Example - Basic markers:
{
"action": "create_map",
"points": [
{"latitude": 37.4220, "longitude": -122.0841, "label": "A"},
{"latitude": 37.4275, "longitude": -122.1697, "label": "B"}
]
}
Example - Styled markers with path on satellite view:
{
"action": "create_map",
"points": [
{"latitude": 37.7749, "longitude": -122.4194, "label": "A", "color": "red"},
{"latitude": 37.3382, "longitude": -121.8863, "label": "B", "color": "blue"}
],
"draw_path": true,
"path_color": "0xFF0000",
"map_type": "hybrid"
}
Example - Multiple locations with global marker styling:
{
"action": "create_map",
"points": [
{"latitude": 40.7128, "longitude": -74.0060},
{"latitude": 34.0522, "longitude": -118.2437},
{"latitude": 41.8781, "longitude": -87.6298}
],
"marker_color": "green",
"marker_size": "mid",
"map_type": "terrain",
"image_width": 600,
"image_height": 400
}
The response includes:
signed_url -- Link to the generated map image. Always present this to the user.image_base64 -- Base64-encoded PNG for inline renderingfile_id -- Storage identifier for the imagesize_bytes -- Image file sizepoints_count -- Number of markers plottedmap_type, size, scale, zoom, draw_path -- Confirms the settings useddraw_path is enabled, at least 2 points are required.Map Generator With Markers on AgentPMT.create_map.file-management, page: https://clawhub.ai/agentpmt/file-management; skills.sh: npx skills add AgentPMT/agent-skills --skill file-management)No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 1.
x402 availability: not enabled for this product.
create_map (action slug: create-map): Generate a static map image with markers plotted at specific coordinates, with optional path connecting points. Price: 20 credits. Parameters: draw_path, image_height, image_width, map_type, marker_color, marker_size, path_color, path_weight, plus 3 more.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "map-generator-with-markers".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "map-generator-with-markers", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "map-generator-with-markers"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "map-generator-with-markers"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "map-generator-with-markers"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "map-generator-with-markers"
}
}
Product slug: map-generator-with-markers
Marketplace page: https://www.agentpmt.com/marketplace/map-generator-with-markers
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Map-Generator-With-Markers",
"arguments": {
"action": "create_map",
"draw_path": false,
"image_height": 640,
"image_width": 640,
"map_type": "roadmap",
"marker_color": "example marker color",
"marker_size": "tiny",
"path_color": "0x0000ff",
"path_weight": 5
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "map-generator-with-markers",
"parameters": {
"action": "create_map",
"draw_path": false,
"image_height": 640,
"image_width": 640,
"map_type": "roadmap",
"marker_color": "example marker color",
"marker_size": "tiny",
"path_color": "0x0000ff",
"path_weight": 5
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.create_map fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)