1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/proj/webmercator.h

17 lines
343 B
C
Raw Normal View History

#ifndef WEBMERCATOR_H
#define WEBMERCATOR_H
2021-09-17 23:45:12 +02:00
#include "map/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