blob: 6ece6d4de915cc1dffc732b930321e9ed3bb6d9f (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef MBGL_UTIL_GEO
#define MBGL_UTIL_GEO
namespace mbgl {
struct LatLng {
double latitude = 0;
double longitude = 0;
inline LatLng(double lat = 0, double lon = 0)
: latitude(lat), longitude(lon) {}
};
struct ProjectedMeters {
double northing = 0;
double easting = 0;
inline ProjectedMeters(double n = 0, double e = 0)
: northing(n), easting(e) {}
};
struct LatLngBounds {
LatLng sw = {90, 180};
LatLng ne = {-90, -180};
inline LatLngBounds(LatLng sw_ = {90, 180}, LatLng ne_ = {-90, -180})
: sw(sw_), ne(ne_) {}
inline void extend(const LatLng& point) {
if (point.latitude < sw.latitude) sw.latitude = point.latitude;
if (point.latitude > ne.latitude) ne.latitude = point.latitude;
if (point.longitude < sw.longitude) sw.longitude = point.longitude;
if (point.longitude > ne.longitude) ne.longitude = point.longitude;
}
inline bool contains(const LatLng& point) {
return (point.latitude >= sw.latitude &&
point.latitude <= ne.latitude &&
point.longitude >= sw.longitude &&
point.longitude <= ne.longitude);
}
};
}
#endif
|