Strategy map
Create a STRATEGY MAP — a plan DRAWN ON a real-world map: zones, coverage circles, route arrows, markers and short text notes over real geography.
Send "type": "strategy_map".
Create a STRATEGY MAP — a plan DRAWN ON a real-world map: zones, coverage circles, route arrows, markers and short text notes over real geography.
Also available as the MCP tool render_strategymap. The same payload works through either surface.
Fields
titlestringShort descriptive title for the plan (e.g. "West Coast Expansion Plan") — displayed on the map
shapesobject[]requiredArray of shapes drawn on the map
Child attributes
typeenum<string>requiredShape kind. One of zone, circle, arrow, marker or text.
coordinatesarrayrequiredzone/arrow: array of [lng,lat] points; circle/marker/text: single [lng,lat] — LONGITUDE FIRST
radiusKmnumberCircle radius in kilometers (REQUIRED for "circle")
colorstringHex "#RRGGBB"; same color groups shapes of one side/team/phase
labelstringOptional short name; label sparingly. For "text" shapes this is the content
emojistringFor "marker": one emoji depicting what the marker IS (not a generic pin)
dashbooleanDashed outline for planned/proposed/tentative elements
Example
{
"type": "strategy_map",
"data": {
"title": "Q4 Launch Planning",
"shapes": [
{
"type": "zone",
"coordinates": [
null
],
"radiusKm": 0,
"color": "string",
"label": "string",
"emoji": "string",
"dash": false
}
]
}
}