> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hyperwisor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Mission Planning Map

> Plan device missions on a map — waypoints, boundaries, and survey areas.

<Info>
  **Category:** Display · **Reads/writes:** mission data · **Sends commands:** no
</Info>

## Mental model

A **Mission Planning Map is a flight planner.** Draw waypoints and boundaries on a
map to define where a device (drone, rover, survey vehicle) should go.

## When to use it

* Plan drone/rover routes and survey areas
* Define waypoints and coverage regions

## Settings

### General

* **Widget Title / ID** · **Product ID** (scope)
* **Mission type**
* **Center lat / lng** — initial view
* **Default altitude / speed** — mission defaults
* **Boundary color** · **overlap percentage** — survey planning
* **Enable editing** · **auto-save** · **loop mission**

## Script API example

The same interactions from a [dashboard script](/script/overview):

```js theme={null}
// Only operators may edit missions
if (context.user?.role !== 'admin') widget.hide('missionMap');
```

<Card title="Map" icon="map" href="/dashboard/widgets/map">
  For simple location display without planning.
</Card>
