#pragma once #include #include namespace mbgl { template using Point = mapbox::geometry::point; template using LineString = mapbox::geometry::line_string; template using Polygon = mapbox::geometry::polygon; template using MultiPoint = mapbox::geometry::multi_point; template using MultiLineString = mapbox::geometry::multi_line_string; template using MultiPolygon = mapbox::geometry::multi_polygon; template using LinearRing = mapbox::geometry::linear_ring; template using Geometry = mapbox::geometry::geometry; template Point convertPoint(const Point& p) { return Point(p.x, p.y); } } // namespace mbgl