mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 13:41:16 +01:00
17 lines
339 B
C++
17 lines
339 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 bool operator==(const CT &ct) const;
|
|
|
|
virtual PointD ll2xy(const Coordinates &c) const;
|
|
virtual Coordinates xy2ll(const PointD &p) const;
|
|
};
|
|
|
|
#endif // WEBMERCATOR_H
|