1 #pragma once 2 3 #include <mbgl/tile/geometry_tile_data.hpp> 4 5 namespace mbgl { 6 7 class Anchor; 8 9 bool checkMaxAngle(const GeometryCoordinates& line, 10 const Anchor& anchor, 11 const float labelLength, 12 const float windowSize, 13 const float maxAngle); 14 15 } // namespace mbgl 16