# `ExGram.Model.StoryAreaTypeLocation`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.65.0/lib/ex_gram.ex#L5433)

Describes a story area pointing to a location. Currently, a story can have up to 10 location areas.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#storyareatypelocation)

- `type`: Type of the area, always "location”
- `latitude`: Location latitude in degrees
- `longitude`: Location longitude in degrees
- `address (optional)`: Optional. Address of the location

# `t`

```elixir
@type t() :: %ExGram.Model.StoryAreaTypeLocation{
  address: ExGram.Model.LocationAddress.t() | nil,
  latitude: float(),
  longitude: float(),
  type: String.t()
}
```

# `decode_as`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
