Interface InputInlineMessageGeo

Inline message containing a geolocation

interface InputInlineMessageGeo {
    accuracy?: number;
    caption?: InputText;
    latitude: number;
    longitude: number;
    replyMarkup?: ReplyMarkup;
    type: "geo";
}

Hierarchy (view full)

Properties

accuracy?: number

The estimated horizontal accuracy of the geolocation, in meters (0-1500)

caption?: InputText

Caption of the media

latitude: number

Latitude of the geolocation

longitude: number

Longitude of the geolocation

replyMarkup?: ReplyMarkup

Message's reply markup

type: "geo"