# Enable Location Messages

To show location messages Chat SDK needs to use the Google static maps API. You need to generate a new API key:

[Google Static Maps API](https://developers.google.com/maps/documentation/static-maps/)

And add it during Chat SDK configuration or when using `quickStart`.

```
ChatSDK.builder()
        .setGoogleMaps("Your key")
```

> **Note:** You need to enable billing in your google cloud console or else you will not be able to view map images in your messages, For more information visit the [Google usage and billing support page](https://developers.google.com/places/web-service/usage-and-billing#important-enable-billing)

You can disable location messages using the `builder().locationMessagesEnabled(false)` option.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://chat-sdk.gitbook.io/android/setup/enable-location-messages.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
