# Map

> Create maps with location markers (pins) for plotting SPECIFIC INDIVIDUAL PLACES on a real-world map.

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

Send `"type": "map"`.

Create maps with location markers (pins) for plotting SPECIFIC INDIVIDUAL PLACES on a real-world map.

Also available as the MCP tool `render_map`. The same payload works through either surface.

### Fields

- `title` (string): Short descriptive title for the map (e.g., "Top Tech Hubs", "Most Populated Countries")
- `markers` (object[], required): Array of location markers
    - `location` (string): FULLY DISAMBIGUATED geocoder-ready name matching the prompt's geographic level: bare country name for country-level; "City, State/Region, Country" for cities ("London, England, United Kingdom", never just "London"); "Place, City, State/Region, Country" for specific places
  - `description` (string)
  - `emoji` (string): Single emoji for marker - use same emoji for all markers
  - `geo` (object)

## Example

```json
{
  "type": "map",
  "data": {
    "title": "Q4 Launch Planning",
    "markers": [
      {
        "location": "string",
        "description": "string",
        "emoji": "string",
        "geo": {
          "coordinates": [
            0
          ],
          "name": "Q4 Launch Planning"
        }
      }
    ]
  }
}
```
