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

Parameters

Name Type Description
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 InputGeoPointObj constructor
obj := &tg.InputGeoPointObj{
    Lat: 3.14159,
    Long: 3.14159,
    AccuracyRadius: nil,
}