mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 08:40:05 +00:00
23 lines
442 B
C++
23 lines
442 B
C++
#pragma once
|
|
|
|
#include <QMapLibreGL/types.hpp>
|
|
#include <glm/gtc/type_ptr.hpp>
|
|
#include <units/length.h>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace util
|
|
{
|
|
namespace maplibre
|
|
{
|
|
|
|
units::length::meters<double>
|
|
GetMapDistance(const QMapLibreGL::CustomLayerRenderParameters& params);
|
|
glm::vec2 LatLongToScreenCoordinate(const QMapLibreGL::Coordinate& coordinate);
|
|
|
|
} // namespace maplibre
|
|
} // namespace util
|
|
} // namespace qt
|
|
} // namespace scwx
|