# 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.

Source: https://mockflow.com/developers/reference/item-types/strategy-map

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

- `title` (string): Short descriptive title for the plan (e.g. "West Coast Expansion Plan") — displayed on the map
- `shapes` (object[], required): Array of shapes drawn on the map
    - `type` (enum<string>, required): Shape kind. One of `zone`, `circle`, `arrow`, `marker` or `text`.
  - `coordinates` (array, required): zone/arrow: array of [lng,lat] points; circle/marker/text: single [lng,lat] — LONGITUDE FIRST
  - `radiusKm` (number): Circle radius in kilometers (REQUIRED for "circle")
  - `color` (string): Hex "#RRGGBB"; same color groups shapes of one side/team/phase
  - `label` (string): Optional short name; label sparingly. For "text" shapes this is the content
  - `emoji` (string): For "marker": one emoji depicting what the marker IS (not a generic pin)
  - `dash` (boolean): Dashed outline for planned/proposed/tentative elements

## Example

```json
{
  "type": "strategy_map",
  "data": {
    "title": "Q4 Launch Planning",
    "shapes": [
      {
        "type": "zone",
        "coordinates": [
          null
        ],
        "radiusKm": 0,
        "color": "string",
        "label": "string",
        "emoji": "string",
        "dash": false
      }
    ]
  }
}
```
