> For the complete documentation index, see [llms.txt](https://rqver-resources.gitbook.io/rq-dogs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rqver-resources.gitbook.io/rq-dogs/script-configuration/gps-configuration.md).

# GPS Configuration

## Shared.EnableGPS

Whether or not to enable the `/dgps` command. The rest of the options in this configuration section are irrelvant if this false.

```lua
Shared.EnableGPS = true -- Whether or not to enable the /dgps command. Displays a blip on the map of the dogs location when enabled.
```

## Shared.BlipText

The text displayed on the right hand side of the map when selecting the dog blip.

```lua
Shared.BlipText = "Dog" -- The name of the blip in the map.
```

## Shared.BlipSprite

The sprite used for the dog blip. Available sprites: <https://docs.fivem.net/docs/game-references/blips/#blips>

```lua
Shared.BlipSprite = 442 -- The sprite to use for the blip from https://docs.fivem.net/docs/game-references/blips/#blips.
```

## Shared.BlipColour

The colour used for the dog blip, and route to the dog blip (If `Shared.EnableRoute` is true). Available Colours: <https://docs.fivem.net/docs/game-references/blips/#blip-colors>

```lua
Shared.BlipColour = 30 -- The colour to use for the blip from https://docs.fivem.net/docs/game-references/blips/#blip-colors.
```

## Shared.EnableRoute

Whether or not to enable a GPS route to a dog's blip. Only displays if in a vehicle or if you have the map pane open.

```lua
Shared.EnableRoute = true -- Whether or not to enable a GPS route from the dog handler to the dog when the blip is active.
```

## Shared.ShowBlipHeadingArrow

Whether or not to append an arrow to the dog blip that displays the dog's heading in real time.

```lua
Shared.ShowBlipHeadingArrow = false -- Whether or not to show an arrow displaying the dog's heading on the blip.
```
