-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathIPosition.cs
More file actions
29 lines (27 loc) · 733 Bytes
/
IPosition.cs
File metadata and controls
29 lines (27 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright © Joerg Battermann 2014, Matt Hunt 2017
namespace GeoJSON.Text.Geometry
{
/// <summary>
/// Defines the Geographic Position type.
/// </summary>
/// <remarks>
/// See https://tools.ietf.org/html/rfc7946#section-3.1.1
/// </remarks>
public interface IPosition
{
/// <summary>
/// Gets the altitude.
/// </summary>
double? Altitude { get; }
/// <summary>
/// Gets the latitude.
/// </summary>
/// <value>The latitude.</value>
double Latitude { get; }
/// <summary>
/// Gets the longitude.
/// </summary>
/// <value>The longitude.</value>
double Longitude { get; }
}
}