ChannelLocation

class pyrogram.raw.types.ChannelLocation

Geographical location of supergroup (geogroups)

Constructor of ChannelLocation.

Details:
  • Layer: 227

  • ID: 209B82DB

Parameters:
  • geo_point (GeoPoint) – Geographical location of supergroup

  • address (str) – Textual description of the address

TL Schema

channelLocation#209b82db
geo_point:GeoPoint
address:string

= ChannelLocation

Parameter Tree

ChannelLocation
├── geo_point → GeoPoint
│ ├── GeoPointEmpty
│ └── GeoPoint
│ ├── long → double
│ ├── lat → double
│ ├── access_hash → long
│ └── accuracy_radius → int (optional)
└── address → string

Example

ChannelLocation(
    geo_point=GeoPointEmpty(),
    address="text",
)