Layer 228
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

GeoPoint

Gogram Example

// Creating GeoPointObj constructor
obj := &tg.GeoPointObj{
    Long: -74.0060,
    Lat: 40.7128,
    AccessHash: int64(5678901234567890),
    AccuracyRadius: nil,
}