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

cities_boundaries_checker.hpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c99292982650d4f64276f23afc16f75db932b4b9 (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
#pragma once

#include "indexer/city_boundary.hpp"

#include "geometry/point2d.hpp"
#include "geometry/tree4d.hpp"

#include <vector>

namespace generator
{
/// \brief Checks whether a given point belongs to a city or a town.
class CitiesBoundariesChecker
{
public:
  using CitiesBoundaries = std::vector<indexer::CityBoundary>;

  explicit CitiesBoundariesChecker(CitiesBoundaries const & citiesBoundaries);

  /// \returns true if |point| is inside a city or a town and false otherwise.
  bool InCity(m2::PointD const & point) const;

private:
  m4::Tree<indexer::CityBoundary> m_tree;
};
}  // namespace generator