Subversion Repositories Projects

Rev

Rev 306 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
305 KeyOz 1
/***************************************************************************
2
 *   Copyright (C) 2009 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation; either version 2 of the License.        *
8
 *                                                                         *
9
 *   This program is distributed in the hope that it will be useful,       *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 *   GNU General Public License for more details.                          *
13
 *                                                                         *
14
 *   You should have received a copy of the GNU General Public License     *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
19
#include "dlg_Map.h"
20
 
21
dlg_Map::dlg_Map(QWidget *parent) : QDialog(parent)
22
{
23
    setupUi(this);
24
 
306 KeyOz 25
    // Kartenwahl ausschalten
26
    lb_Maps->setVisible(false);
27
    cb_Maps->setVisible(false);
28
 
29
    // Noch nicht eingebaut also Button weg.
30
    pb_SendWaypoints->setVisible(false);
31
 
32
    pb_Add->setEnabled(false);
33
    pb_Goto->setEnabled(false);
34
}
35
 
36
// Karte erstellen und anzeigen
37
void dlg_Map::create_Map(cSettings *t_Settings)
38
{
39
    o_Settings = t_Settings;
40
 
41
    cb_CenterPos->setChecked(o_Settings->Map.GotoPosition);
42
    cb_ShowRoute->setChecked(o_Settings->Map.ShowTrack);
43
 
305 KeyOz 44
    connect(sl_Zoom,   SIGNAL(valueChanged(int)), this, SLOT(slot_Zoom(int)));
306 KeyOz 45
    connect(pb_Add,    SIGNAL(clicked()), this, SLOT(slot_AddWayPoint()));
46
    connect(pb_Delete, SIGNAL(clicked()), this, SLOT(slot_DeleteWayPoints()));
47
    connect(pb_Goto,   SIGNAL(clicked()), this, SLOT(slot_GotoTarget()));
305 KeyOz 48
    connect(cb_Maps,   SIGNAL(currentIndexChanged(int)), this, SLOT(slot_ChangeMap(int)));
306 KeyOz 49
    connect(this,      SIGNAL(rejected()), this, SLOT(slot_Close()));
305 KeyOz 50
 
51
    o_Map = new MapControl(w_Map->size());
306 KeyOz 52
    o_Map->enablePersistentCache(o_Settings->DIR.Cache);
53
    o_Map->showScale(true);
305 KeyOz 54
 
55
    o_Adapter = new OSMMapAdapter();
56
 
57
    o_Layer = new MapLayer("MapLayer", o_Adapter);
58
    o_Click = new GeometryLayer("Click", o_Adapter);
59
    o_Route = new GeometryLayer("Poute", o_Adapter);
60
 
61
    o_Map->addLayer(o_Layer);
62
    o_Map->addLayer(o_Click);
63
    o_Map->addLayer(o_Route);
64
 
65
    o_Map->setZoom(17);
66
//    o_Map->setView(QPointF(13.85615670,52.50787020));
67
    o_Map->setView(QPointF(13.5,52.5));
68
 
69
    connect(o_Map, SIGNAL(mouseEventCoordinate(const QMouseEvent*, const QPointF)), this, SLOT(slot_Click(const QMouseEvent*, const QPointF)));
70
 
71
    l_Map->addWidget(o_Map);
72
 
73
    sl_Zoom->setValue(17);
74
 
75
    Pen[0] = new QPen(QColor(0,0,255,255));
76
    Pen[0]->setWidth(2);
77
    Pen[1] = new QPen(QColor(255,0,0,255));
78
    Pen[1]->setWidth(2);
79
}
80
 
306 KeyOz 81
// Position zum Flug-Track hinzufügen
305 KeyOz 82
void dlg_Map::add_Position(double x, double y)
83
{
306 KeyOz 84
    sWayPoint WayPoint;
85
 
86
    WayPoint.Longitude = x;
87
    WayPoint.Latitude = y;
88
    WayPoint.Time = sb_Time->value();
89
 
90
    l_WayPoint.append(WayPoint);
91
 
305 KeyOz 92
    o_Route->removeGeometry(l_RouteFL);
93
    p_RouteFL.append(new Point(x,y));
94
 
95
    o_Click->removeGeometry(LastPos);
96
 
97
    Point* P = new CirclePoint(x, y, "P1", Point::Middle, Pen[0]);
98
    LastPos = P;
99
    P->setBaselevel(17);
100
    o_Click->addGeometry(P);
101
 
102
    if (cb_CenterPos->isChecked())
103
    {
104
        o_Map->setView(QPointF(x, y));
105
    }
106
 
107
    if (cb_ShowRoute->isChecked())
108
    {
109
        l_RouteFL = new LineString(p_RouteFL, "", Pen[1]);
110
 
111
        o_Route->addGeometry(l_RouteFL);
112
    }
113
    o_Map->updateRequestNew();
114
}
115
 
306 KeyOz 116
// Zoom der Karte ändern
117
void dlg_Map::slot_Zoom(int t_Zoom)
305 KeyOz 118
{
306 KeyOz 119
    o_Map->setZoom(t_Zoom);
305 KeyOz 120
}
121
 
306 KeyOz 122
// Waypoint zur Liste hinzufügen
123
void dlg_Map::slot_AddWayPoint()
305 KeyOz 124
{
125
    o_Route->removeGeometry(l_RouteWP);
126
 
127
    p_RouteWP.append(LastClick);
128
    l_RouteWP = new LineString(p_RouteWP, "", Pen[0]);
129
 
130
    o_Route->addGeometry(l_RouteWP);
131
    o_Map->updateRequestNew();
132
}
133
 
306 KeyOz 134
// Waypoint-Liste löschen
135
void dlg_Map::slot_DeleteWayPoints()
305 KeyOz 136
{
137
    o_Route->removeGeometry(l_RouteWP);
138
    p_RouteWP.clear();
306 KeyOz 139
    l_WayPoint.clear();
305 KeyOz 140
    o_Map->updateRequestNew();
141
}
142
 
306 KeyOz 143
// Zum Zielpunkt fliegen
144
void dlg_Map::slot_GotoTarget()
145
{
146
    sWayPoint Target;
147
 
148
    Target.Longitude = LastClick->longitude();
149
    Target.Latitude = LastClick->latitude();
150
    Target.Time = sb_Time->value();
151
 
152
    emit(set_Target(Target));
153
}
154
 
155
// Click in der Karte
305 KeyOz 156
void dlg_Map::slot_Click(const QMouseEvent* Event, const QPointF Coord)
157
{
158
    if ((Event->type() == QEvent::MouseButtonPress) && ((Event->button() == Qt::RightButton) || (Event->button() == Qt::MidButton)))
159
    {
160
        sl_Zoom->setValue(o_Adapter->adaptedZoom());
161
    }
162
 
306 KeyOz 163
    // Überwachen ob Karte verschoben wird
305 KeyOz 164
    if ((Event->type() == QEvent::MouseButtonPress) && (Event->button() == Qt::LeftButton))
165
    {
306 KeyOz 166
        MapCenter = o_Map->currentCoordinate();
167
    }
305 KeyOz 168
 
306 KeyOz 169
    // Nur wenn nicht Verschoben dann einen Punkt setzen
170
    if ((Event->type() == QEvent::MouseButtonRelease) && (Event->button() == Qt::LeftButton))
171
    {
172
        if (o_Map->currentCoordinate() == MapCenter)
173
        {
174
            pb_Add->setEnabled(true);
175
            pb_Goto->setEnabled(true);
305 KeyOz 176
 
306 KeyOz 177
            o_Click->removeGeometry(ClickPoint);
305 KeyOz 178
 
306 KeyOz 179
            ClickPoint = new CirclePoint(Coord.x(), Coord.y(), 6, "P1", Point::Middle, Pen[1]);
180
//            LastPoint = P;
181
 
182
            LastClick = new Point(Coord.x(), Coord.y());
183
 
184
            ClickPoint->setBaselevel(o_Adapter->adaptedZoom());
185
            o_Click->addGeometry(ClickPoint);
186
        }
305 KeyOz 187
    }
306 KeyOz 188
 
305 KeyOz 189
    o_Map->updateRequestNew();
306 KeyOz 190
//    qDebug(QString("%1").arg(Coord.x()).toLatin1().data());
191
//    qDebug(QString("%1").arg(Coord.y()).toLatin1().data());
305 KeyOz 192
}
193
 
306 KeyOz 194
// auf Veränderung der Fenstergröße reagieren
305 KeyOz 195
void dlg_Map::resizeEvent ( QResizeEvent * event )
196
{
306 KeyOz 197
    event = event;
305 KeyOz 198
    o_Map->resize(w_Map->size() - QSize(20,20));
199
}
200
 
306 KeyOz 201
// Karte wechseln
202
void dlg_Map::slot_ChangeMap(int t_Set)
305 KeyOz 203
{
306 KeyOz 204
    int zoom = o_Adapter->adaptedZoom();
205
    QPointF a = o_Map->currentCoordinate();
305 KeyOz 206
 
306 KeyOz 207
    o_Map->setZoom(0);
208
 
209
    switch(t_Set)
210
    {
211
        case 0 : // OpenStreetMap
212
        {
305 KeyOz 213
            o_Adapter = new OSMMapAdapter();
306 KeyOz 214
        }
215
        break;
216
        case 1 : // Google Maps
217
        {
218
            o_Adapter = new GoogleMapAdapter();
219
        }
220
        break;
221
        case 2 : // Google Sat
222
        {
223
            o_Adapter = new GoogleSatMapAdapter();
224
        }
225
        break;
226
        case 3 : // Yahoo Maps
227
        {
305 KeyOz 228
            o_Adapter = new YahooMapAdapter();
306 KeyOz 229
        }
230
        break;
231
        case 4 : // Yahoo Sat
232
        {
305 KeyOz 233
            o_Adapter = new YahooMapAdapter("us.maps3.yimg.com", "/aerial.maps.yimg.com/png?v=1.7&t=a&s=256&x=%2&y=%3&z=%1");
306 KeyOz 234
        }
315 KeyOz 235
        case 5 : // Yahoo Sat
236
        {
237
            o_Adapter = new WMSMapAdapter("openaerialmap.org", "/wms/wms.asp?wms=WorldMap&LAYERS=world&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&STYLES=&EXCEPTIONS=application/vnd.ogc.se_inimage&SRS=EPSG:4326&TRANSPARENT=FALSE", 256);
238
        }
306 KeyOz 239
        break;
240
    }
305 KeyOz 241
 
306 KeyOz 242
    o_Layer->setMapAdapter(o_Adapter);
243
    o_Click->setMapAdapter(o_Adapter);
244
    o_Route->setMapAdapter(o_Adapter);
305 KeyOz 245
 
306 KeyOz 246
    o_Map->updateRequestNew();
247
    o_Map->setZoom(zoom);
248
}
305 KeyOz 249
 
306 KeyOz 250
// Fenster wird geschlossen.
251
void dlg_Map::slot_Close()
252
{
253
    o_Settings->Map.GotoPosition = cb_CenterPos->isChecked();
254
    o_Settings->Map.ShowTrack    = cb_ShowRoute->isChecked();
255
    emit set_Settings(o_Settings);
256
}
305 KeyOz 257