Started writing some map fetcher usage code, but the actual map fetcher codebase...
[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 #include <QUrl>
24
25 #include "mapengine.h"
26 #include "maptile.h"
27 #include "mapscene.h"
28
29 MapEngine::MapEngine(MapView *mapView, QWidget *parent)
30     : QObject(parent)
31 {
32     m_mapView = mapView;
33     m_mapScene = new MapScene(this);
34     mapView->setScene(m_mapScene);
35     m_zoomLevel = 14;
36
37     m_mapFetcher = new MapFetcher(this);
38 }
39
40 void MapEngine::setViewLocation(QPointF latLonCoordinate)
41 {
42     m_mapView->setZoomLevel(m_zoomLevel);
43
44     /// Show some dummy map tiles for demo purposes
45     for (int x=9351; x<=9354; x++) {
46         for (int y=4261; y<=4264; y++) {
47
48         }
49     }
50 }
51
52 void MapEngine::mapImageReceived(const QUrl url, const QPixmap pixmap)
53 {
54     QString path = url.path();
55     qDebug() << __PRETTY_FUNCTION__ << "path:" << path;
56
57 //    MapTile *mapTile = new MapTile();
58 //    mapTile->setZoomLevel(m_zoomLevel);
59 //    mapTile->setTileNumber(QPoint(x, y));
60 //    mapTile->setPixmap(QPixmap(fileName));
61 //    m_mapScene->addMapTile(mapTile);
62 }