Layer 220
constructor
inputGeoPoint#48222faf flags:# lat:double long:double accuracy_radius:flags.0?int = InputGeoPoint;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Lat double Latitude
Long double Longitude
AccuracyRadius flags.0?int The estimated horizontal accuracy of the location, in meters; as defined by the sender.

Returns

InputGeoPoint

Gogram Example

// Creating InputGeoPoint constructor
obj := &tg.InputGeoPoint{
    Lat: 0.0,
    Long: 0.0,

    // Optional fields:
    // AccuracyRadius: 0,
}