Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'indexer/map_object.hpp')
-rw-r--r--indexer/map_object.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indexer/map_object.hpp b/indexer/map_object.hpp
index 92fba24246..6f8de6ab36 100644
--- a/indexer/map_object.hpp
+++ b/indexer/map_object.hpp
@@ -60,6 +60,7 @@ public:
ms::LatLon GetLatLon() const;
m2::PointD const & GetMercator() const;
+ std::vector<m2::PointD> const & GetTriangesAsPoints() const;
feature::TypesHolder const & GetTypes() const;
std::string GetDefaultName() const;
@@ -107,6 +108,10 @@ protected:
FeatureID m_featureID;
m2::PointD m_mercator;
+
+ std::vector<m2::PointD> m_points;
+ std::vector<m2::PointD> m_triangles;
+
StringUtf8Multilang m_name;
feature::TypesHolder m_types;
feature::Metadata m_metadata;