mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:50:06 +00:00
25 lines
588 B
C++
25 lines
588 B
C++
#pragma once
|
|
|
|
#include <QMapLibreGL/QMapLibreGL>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace map
|
|
{
|
|
namespace RadarRangeLayer
|
|
{
|
|
|
|
void Add(std::shared_ptr<QMapLibreGL::Map> map,
|
|
float range,
|
|
QMapLibreGL::Coordinate center,
|
|
const QString& before = QString());
|
|
void Update(std::shared_ptr<QMapLibreGL::Map> map,
|
|
float range,
|
|
QMapLibreGL::Coordinate center);
|
|
|
|
} // namespace RadarRangeLayer
|
|
} // namespace map
|
|
} // namespace qt
|
|
} // namespace scwx
|