ChannelLocation

class pyrogram.raw.base.ChannelLocation

Geographical location of supergroup (geogroups)

Constructors:

This base type has 2 constructors available.

ChannelLocation

Geographical location of supergroup (geogroups)

ChannelLocationEmpty

No location (normal supergroup)

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",
)