--- title: keyboardButtonRequestGeoLocation description: Button to request a user's geolocation image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: keyboardButtonRequestGeoLocation [Back to constructors index](index.md) Button to request a user's geolocation ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |text|[string](../types/string.md) | Yes|Button text| ### Type: [KeyboardButton](../types/KeyboardButton.md) ### Example: ```php $keyboardButtonRequestGeoLocation = ['_' => 'keyboardButtonRequestGeoLocation', 'text' => 'string']; ``` Or, if you're into Lua: ```lua keyboardButtonRequestGeoLocation={_='keyboardButtonRequestGeoLocation', text='string'} ```