Layer 228
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: 40.7128,
    Long: -74.0060,
    AccuracyRadius: nil,
}