telegram.InlineQueryResultLocation¶
-
class
telegram.InlineQueryResultLocation(id, latitude, longitude, title, live_period=None, reply_markup=None, input_message_content=None, thumb_url=None, thumb_width=None, thumb_height=None, **kwargs)¶ Bases:
telegram.inline.inlinequeryresult.InlineQueryResultRepresents a location on a map. By default, the location will be sent by the user. Alternatively, you can use
input_message_contentto send a message with the specified content instead of the location.-
type¶ str– ‘location’.
-
id¶ str– Unique identifier for this result, 1-64 bytes.
-
latitude¶ float– Location latitude in degrees.
-
longitude¶ float– Location longitude in degrees.
-
title¶ str– Location title.
-
live_period¶ int– Optional. Period in seconds for which the location can be updated, should be between 60 and 86400.
-
reply_markup¶ telegram.InlineKeyboardMarkup– Optional. Inline keyboard attached to the message.
-
input_message_content¶ telegram.InputMessageContent– Optional. Content of the message to be sent instead of the location.
-
thumb_url¶ str– Optional. Url of the thumbnail for the result.
-
thumb_width¶ int– Optional. Thumbnail width.
-
thumb_height¶ int– Optional. Thumbnail height.
Parameters: - id (
str) – Unique identifier for this result, 1-64 bytes. - latitude (
float) – Location latitude in degrees. - longitude (
float) – Location longitude in degrees. - title (
str) – Location title. - live_period (
int, optional) – Period in seconds for which the location can be updated, should be between 60 and 86400. - reply_markup (
telegram.InlineKeyboardMarkup, optional) – Inline keyboard attached to the message. - input_message_content (
telegram.InputMessageContent, optional) – Content of the message to be sent instead of the location. - thumb_url (
str, optional) – Url of the thumbnail for the result. - thumb_width (
int, optional) – Thumbnail width. - thumb_height (
int, optional) – Thumbnail height. - **kwargs (
dict) – Arbitrary keyword arguments.
-