mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
16 lines
282 B
C
16 lines
282 B
C
|
#ifndef LATLON_H
|
||
|
#define LATLON_H
|
||
|
|
||
|
#include "projection.h"
|
||
|
|
||
|
class LatLon : public Projection
|
||
|
{
|
||
|
public:
|
||
|
virtual QPointF ll2xy(const Coordinates &c) const
|
||
|
{return c.toPointF();}
|
||
|
virtual Coordinates xy2ll(const QPointF &p) const
|
||
|
{return Coordinates(p);}
|
||
|
};
|
||
|
|
||
|
#endif // LATLON_H
|