1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/map/webmercator.h

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