Added new scalable panels, deleted obsolite bitmaps and made some minor cosmetic...
[situare] / src / map / mapcommon.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        Jussi Laitinen - jussi.laitinen@ixonos.com
7
8    Situare is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License
10    version 2 as published by the Free Software Foundation.
11
12    Situare is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with Situare; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
20    USA.
21 */
22
23 #ifndef MAPCOMMON_H
24 #define MAPCOMMON_H
25
26 #include <QtCore>
27
28 const int TILE_SIZE_X = 256;      ///< Tile image size in x direction
29 const int TILE_SIZE_Y = 256;      ///< Tile image size in y direction
30 const int MAP_TILE_MIN_INDEX = 0; ///< First index number of map tiles
31
32 const int MIN_MAP_ZOOM_LEVEL = 0; ///< Minimum zoom level
33 const int MAX_MAP_ZOOM_LEVEL = 18; ///< Maximum zoom level
34 const int MIN_VIEW_ZOOM_LEVEL = 2; ///< Minimum zoom level for MapView
35
36 /**
37 * @var MIN_MAP_SCENE_NORMAL_LEVEL
38 * @brief Used for shifting zValues of MapTiles
39 */
40 const int MIN_MAP_SCENE_NORMAL_LEVEL = MAX_MAP_ZOOM_LEVEL + 1;
41
42 const int MAX_TILES_PER_SIDE = (1 << MAX_MAP_ZOOM_LEVEL);  ///< Amount of tiles per side
43 const int MAP_PIXELS_X = MAX_TILES_PER_SIDE * TILE_SIZE_X; ///< Amount of horizontal pixels in map
44
45 const int MAP_MIN_PIXEL_X = 0;                ///< First map horizontal pixel index
46 const int MAP_MAX_PIXEL_X = MAP_PIXELS_X - 1; ///< Last map horizontal pixel index
47
48 const int MAP_MIN_PIXEL_Y = 0;                                   ///< First map vertical pixel index
49 const int MAP_MAX_PIXEL_Y = MAX_TILES_PER_SIDE * TILE_SIZE_Y - 1; ///< Last map vertical pixel index
50
51 const double MAP_SCENE_VERTICAL_OVERSIZE_FACTOR = 0.5; ///< MapScene vertical oversize ( * map size)
52
53 /**
54 * @var MAP_SCENE_MIN_PIXEL_X
55 * @brief First scene horizontal pixel
56 */
57 const int MAP_SCENE_MIN_PIXEL_X = -MAP_PIXELS_X * MAP_SCENE_VERTICAL_OVERSIZE_FACTOR;
58
59 /**
60 * @var MAP_SCENE_MAX_PIXEL_X
61 * @brief Last scene horizontal pixel
62 */
63 const int MAP_SCENE_MAX_PIXEL_X = MAP_PIXELS_X * (1 + MAP_SCENE_VERTICAL_OVERSIZE_FACTOR) - 1;
64
65 /**
66 * @var DEFAULT_START_ZOOM_LEVEL
67 * @brief Maps Default zoom level, used when latest zoom level is not available.
68 */
69 const int DEFAULT_START_ZOOM_LEVEL = MIN_VIEW_ZOOM_LEVEL;
70
71 /**
72 * @var FRIEND_LOCATION_ICON_Z_LEVEL
73 * @brief layer of friend location icon
74 */
75 const int FRIEND_LOCATION_ICON_Z_LEVEL = MIN_MAP_SCENE_NORMAL_LEVEL + MAX_MAP_ZOOM_LEVEL + 1;
76
77 const int GROUP_ITEM_FRIENDS_COUNT_X = 13;  ///< Group item friends count x value
78 const int GROUP_ITEM_FRIENDS_COUNT_Y = 13;  ///< Group item friends count y value
79 const int GROUP_ITEM_FRIENDS_COUNT_WIDTH = 17;  ///< Group item friends count width value
80 const int GROUP_ITEM_FRIENDS_COUNT_HEIGHT = 17; ///< Group item friends count height value
81
82 const int PRESS_MANHATTAN_LENGTH = 30;   ///< Friend/group item press manhattan length
83
84 /**
85 * @var OWN_LOCATION_ICON_Z_LEVEL
86 * @brief layer of own location icon
87 */
88 const int OWN_LOCATION_ICON_Z_LEVEL = FRIEND_LOCATION_ICON_Z_LEVEL + 1;
89
90 const qreal ZOOM_TIME = 250; ///< Length of the zoom effect (ms)
91
92 const qreal MAX_LATITUDE = 85.05112877980659237802;  ///< Maximum latitude value
93 const qreal MIN_LATITUDE = -MAX_LATITUDE; ///< Minimum latitude value
94 const qreal MIN_LONGITUDE = -180.0;  ///< Minimum longitude value
95 const qreal MAX_LONGITUDE = 180.0;  ///< Maximum longitude value
96
97 const int DEFAULT_ZOOM_LEVEL = 14;       ///< Default zoom level
98 const qreal DEFAULT_LONGITUDE = 0.0000;  ///< Default longitude value
99 const qreal DEFAULT_LATITUDE = 0.0000; ///< Default latitude value
100
101 const qreal EARTH_RADIUS = 6371.01;         ///< Earth radius in km
102
103 const int GRID_PADDING = 0;  ///< Grid padding used in tile grid calculation
104
105 const QString OSM_LICENSE = QString::fromUtf8("© OpenStreetMap contributors, CC-BY-SA");
106
107 const int AUTO_CENTERING_DISABLE_DISTANCE = 200; ///< Distance in pixels
108
109 //String constants for storing map settings:
110 const QString MAP_LAST_ZOOMLEVEL = "LAST_MAP_ZOOM_LEVEL";   ///< Maps last zoom level before logout
111 const QString MAP_LAST_POSITION = "LAST_MAP_LOCATION";      ///< Maps last postion before logout
112 /**
113 * @var ERROR_VALUE_NOT_FOUND_ON_SETTINGS
114 * @brief Error string that program will get if value is not found on settings
115 */
116 const QString ERROR_VALUE_NOT_FOUND_ON_SETTINGS = "Value_not_found";
117
118 /**
119 * @var UNDEFINED
120 * @brief Value to be used when zoom level, tile numbers or position are not defined
121 */
122 const int UNDEFINED = INT_MIN;
123
124 #endif // MAPCOMMON_H