mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 04:30:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <scwx/qt/map/map_context.hpp>
 | 
						|
 | 
						|
#include <QMapLibre/Map>
 | 
						|
#include <QMapLibre/Types>
 | 
						|
#include <glm/gtc/type_ptr.hpp>
 | 
						|
#include <units/length.h>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace util
 | 
						|
{
 | 
						|
namespace maplibre
 | 
						|
{
 | 
						|
 | 
						|
units::length::meters<double>
 | 
						|
          GetMapDistance(const QMapLibre::CustomLayerRenderParameters& params);
 | 
						|
glm::mat4 GetMapMatrix(const QMapLibre::CustomLayerRenderParameters& params);
 | 
						|
glm::vec2 GetMapScale(const QMapLibre::CustomLayerRenderParameters& params);
 | 
						|
 | 
						|
/**
 | 
						|
 * @brief Determine whether a point lies within a polygon
 | 
						|
 *
 | 
						|
 * @param [in] vertices Counterclockwise vertices
 | 
						|
 * @param [in] point Point to test
 | 
						|
 *
 | 
						|
 * @return Whether the point lies within the polygon
 | 
						|
 */
 | 
						|
bool IsPointInPolygon(const std::vector<glm::vec2>& vertices,
 | 
						|
                      const glm::vec2&              point);
 | 
						|
 | 
						|
glm::vec2 LatLongToScreenCoordinate(const QMapLibre::Coordinate& coordinate);
 | 
						|
 | 
						|
void SetMapStyleUrl(const std::shared_ptr<map::MapContext>& mapContext,
 | 
						|
                    const std::string&                      url);
 | 
						|
 | 
						|
} // namespace maplibre
 | 
						|
} // namespace util
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |