MapViewer/include/multipolygon.hpp

27 lines
460 B
C++
Raw Normal View History

2021-04-16 13:16:00 +00:00
#pragma once
#include <memory>
#include <osmrelation.hpp>
2021-04-17 01:15:07 +00:00
struct SDL_FPoint;
struct SDL_Renderer;
2021-04-16 13:16:00 +00:00
class Multipolygon
{
public:
Multipolygon(const std::shared_ptr<osmp::Relation>& relation, int width, int height, osmp::Bounds bounds);
2021-04-17 01:15:07 +00:00
void Draw(SDL_Renderer* renderer, int r, int g, int b);
2021-04-16 13:16:00 +00:00
private:
2021-04-17 01:15:07 +00:00
struct Vertex {
double x, y;
};
struct Polygon {
std::vector<Vertex> vertices;
std::vector<int> indices;
};
std::vector<Polygon> polygons;
2021-04-16 13:16:00 +00:00
};