UNPKG

264 BPlain TextView Raw
1/**
2 * A set of coordinates specifying a location.
3 */
4export interface GeoLocation {
5 /**
6 * The latitude of the location in decimal degrees.
7 */
8 latitude: number;
9
10 /**
11 * The longitude of the location in decimal degrees.
12 */
13 longitude: number;
14}