Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
801 - 1
/*
2
*
3
* This file is part of QMapControl,
4
* an open-source cross-platform map widget
5
*
6
* Copyright (C) 2007 - 2008 Kai Winter
7
*
8
* This program is free software: you can redistribute it and/or modify
9
* it under the terms of the GNU Lesser General Public License as published by
10
* the Free Software Foundation, either version 3 of the License, or
11
* (at your option) any later version.
12
*
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
* GNU Lesser General Public License for more details.
17
*
18
* You should have received a copy of the GNU Lesser General Public License
19
* along with QMapControl. If not, see <http://www.gnu.org/licenses/>.
20
*
21
* Contact e-mail: kaiwinter@gmx.de
22
* Program URL   : http://qmapcontrol.sourceforge.net/
23
*
24
*/
25
 
26
#ifndef TILEMAPADAPTER_H
27
#define TILEMAPADAPTER_H
28
 
29
#include "mapadapter.h"
30
 
31
namespace qmapcontrol
32
{
33
    //! MapAdapter for servers with image tiles
34
    /*!
35
     * Use this derived MapAdapter to display maps from OpenStreetMap
36
     *  @author Kai Winter <kaiwinter@gmx.de>
37
     */
38
    class TileMapAdapter : public MapAdapter
39
    {
40
        Q_OBJECT
41
                public:
42
        //! constructor
43
        /*!
44
         * Sample of a correct initialization of a MapAdapter:<br/>
45
         * TileMapAdapter* ta = new TileMapAdapter("192.168.8.1", "/img/img_cache.php/%1/%2/%3.png", 256, 0,17);<br/>
46
         * The placeholders %1, %2, %3 stands for x, y, z<br/>
47
         * The minZoom is 0 (means the whole world is visible). The maxZoom is 17 (means it is zoomed in to the max)
48
         * @param host The servers URL
49
         * @param serverPath The path to the tiles with placeholders
50
         * @param tilesize the size of the tiles
51
         * @param minZoom the minimum zoom level
52
         * @param maxZoom the maximum zoom level
53
         */
54
        TileMapAdapter(const QString& host, const QString& serverPath, int tilesize, int minZoom = 0, int maxZoom = 17);
55
 
56
        virtual ~TileMapAdapter();
57
 
58
        virtual QPoint coordinateToDisplay(const QPointF&) const;
59
        virtual QPointF displayToCoordinate(const QPoint&) const;
60
 
61
        qreal PI;
62
 
63
    protected:
64
        qreal rad_deg(qreal) const;
65
        qreal deg_rad(qreal) const;
66
 
67
        virtual bool isValid(int x, int y, int z) const;
68
        virtual void zoom_in();
69
        virtual void zoom_out();
70
        virtual QString query(int x, int y, int z) const;
71
        virtual int tilesonzoomlevel(int zoomlevel) const;
72
        virtual int xoffset(int x) const;
73
        virtual int yoffset(int y) const;
74
    };
75
}
76
#endif