21 lines
441 B
C#
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; }
|
|||
|
}
|
|||
|
}
|