6 #include "LatLongAltitude.h"
7 #include "InteriorHighlightOutlineChunkDto.h"
11 #include <unordered_map>
25 const std::unordered_map<std::string, int>& GetIdToContoursPerPolygonLookUp()
const;
26 const int TryGetContoursPerPolygonIndex(
const std::string&
id)
const;
27 const bool Contains(
const std::string&
id)
const;
28 const std::vector<int>& GetContoursPerPolygon()
const;
29 const std::vector<int>& GetLatLngPairsPerContour()
const;
30 const std::vector<double>& GetLatLngsInDegrees()
const;
34 const std::unordered_map<std::string,int>& idToContoursPerPolygonLookUp,
35 const std::vector<int>& contoursPerPolygon,
36 const std::vector<int>& latLngsPerContour,
37 const std::vector<double>& latLngsInDegrees);
39 const std::unordered_map<std::string, int> m_idToContoursPerPolygonLookUp;
40 const std::vector<int> m_contoursPerPolygon;
41 const std::vector<int> m_latLngsPerContour;
42 const std::vector<double> m_latLngsInDegrees;