Plane.Libraries/Plane.Maps.ChinaOffset/LatLng.cs
2017-02-27 02:04:13 +08:00

21 lines
441 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Plane.Maps.ChinaOffset
{
public struct LatLng
{
public LatLng(double latitude, double longitude)
{
this.Latitude = latitude;
this.Longitude = longitude;
}
public double Latitude { get; set; }
public double Longitude { get; set; }
}
}