Layer 224
GeoPointObj
Geo Point.
constructor
geoPoint#b2a2f663 flags:# long:double lat:double access_hash:long accuracy_radius:flags.0?int = GeoPoint;
Parameters
| Name | Type | Description |
|---|---|---|
| Long | double | Longitude |
| Lat | double | Latitude |
| AccessHash | long | Access hash |
| AccuracyRadius | flags.0?int | The estimated horizontal accuracy of the location, in meters; as defined by the sender. |
Returns
GeoPointGogram Example
// Creating GeoPointObj constructor obj := &tg.GeoPointObj{ Long: 3.14159, Lat: 3.14159, AccessHash: int64(1234567890), // Optional fields: // AccuracyRadius: 42, }