Added testcases for convertLatLonToTile. Modified convertLatLonTile to
[situare] / src / map / maptile.h
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Sami Rämö - sami.ramo@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #ifndef MAPTILE_H
23 #define MAPTILE_H
24
25 #include <QGraphicsPixmapItem>
26 #include <QPoint>
27
28 /**
29 * @brief Map tile item
30 *
31 * @author Sami Rämö - sami.ramo (at) ixonos.com
32 */
33 class MapTile : public QGraphicsPixmapItem
34 {
35 public:
36     /**
37     * @brief Constructor
38     */
39     MapTile();
40
41     /**
42     * @brief Getter for zoom level
43     *
44     * @return Zoom level
45     */
46     int zoomLevel();
47
48     /**
49     * @brief Setter for zoom level
50     *
51     * @param zoomLevel Zoom level
52     */
53     void setZoomLevel(int zoomLevel);
54
55     /**
56     * @brief Getter for tile number
57     *
58     * @return Tile number
59     */
60     QPoint tileNumber();
61
62     /**
63     * @brief Setter for tile number
64     *
65     * Does also set the position for the item in the MapScene coordinate system
66     * @param tileNumber Tile number
67     */
68     void setTileNumber(QPoint tileNumber);
69
70 private:
71     /**
72     * @brief Set position of the tile in the MapScene coordinate system
73     *
74     * Does set the position based on the m_zoomLevel and the m_TileNumber. Position is set to
75     * (UNDEFINED, UNDEFINED) if there is something wrong with zoom level or tile numbers
76     */
77     void setPosition();
78
79 private:
80     int m_zoomLevel; ///< Zoom level
81     QPoint m_tileNumber; ///< Tile number
82 };
83
84 #endif // MAPTILE_H