All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PolygonData.h
1 // Copyright (c) 2015 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include "document.h"
6 #include "GeoJSONObject.h"
7 #include "LinearRing.h"
8 #include <vector>
9 
10 namespace Eegeo
11 {
12  namespace Data
13  {
14  namespace GeoJSON
15  {
17  {
18  public:
19  PolygonData(const rapidjson::Value& ringData);
20 
21  const size_t GetNumHoles() const;
22  const LinearRing& GetHoleAt(int index) const;
23  const LinearRing& GetExteriorRing() const;
24 
25  protected:
26  const rapidjson::Value& m_coordinatesData;
27  LinearRing m_exterior;
28  TLinearRings m_holes;
29  };
30  }
31  }
32 }