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