Set parents for MapEngine & MapScene
[situare] / src / map / mapengine.cpp
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 #include <QDebug>
23
24 #include "mapengine.h"
25 #include "maptile.h"
26 #include "mapscene.h"
27
28 MapEngine::MapEngine(MapView *mapView, QWidget *parent)
29     : QObject(parent)
30 {
31     m_mapView = mapView;
32     m_mapScene = new MapScene(this);
33     mapView->setScene(m_mapScene);
34     m_zoomLevel = 14;
35 }
36
37 void MapEngine::setViewLocation(QPointF latLonCoordinate)
38 {
39     m_mapView->setZoomLevel(m_zoomLevel);
40
41     /// Show some dummy map tiles for demo purposes
42     for (int x=9351; x<=9354; x++) {
43         for (int y=4261; y<=4264; y++) {
44             MapTile *mapTile = new MapTile();
45             mapTile->setZoomLevel(m_zoomLevel);
46             mapTile->setTileNumber(QPoint(x, y));
47             QString fileName = QString("res/images/test_map_tiles/%1_%2_%3.png")
48                                .arg(mapTile->zoomLevel()).arg(x).arg(y);
49 //            qDebug() << __PRETTY_FUNCTION__ << "fileName:" << fileName;
50             mapTile->setPixmap(QPixmap(fileName));
51             m_mapScene->addMapTile(mapTile);
52         }
53     }
54 }