mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
16 lines
293 B
C++
16 lines
293 B
C++
#ifndef WEBMERCATOR_H
|
|
#define WEBMERCATOR_H
|
|
|
|
#include "ct.h"
|
|
|
|
class WebMercator : public CT
|
|
{
|
|
public:
|
|
virtual CT *clone() const {return new WebMercator(*this);}
|
|
|
|
virtual PointD ll2xy(const Coordinates &c) const;
|
|
virtual Coordinates xy2ll(const PointD &p) const;
|
|
};
|
|
|
|
#endif // WEBMERCATOR_H
|