Decision.Common.OpenGraph.Structs.OpenGraphLocation.OpenGraphLocation C# (CSharp) Méthode

OpenGraphLocation() public méthode

Initializes a new instance of the OpenGraphLocation class.
public OpenGraphLocation ( double latitude, double longitude )
latitude double The latitude of the location.
longitude double The longitude of the location.
        public OpenGraphLocation(double latitude, double longitude)
        {
            this._latitude = latitude;
            this._longitude = longitude;
        }

Same methods

OpenGraphLocation::OpenGraphLocation ( double latitude, double longitude, double altitude )
OpenGraphLocation