Rev 391 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
305 | KeyOz | 1 | /* |
2 | * |
||
3 | * This file is part of QMapControl, |
||
4 | * an open-source cross-platform map widget |
||
5 | * |
||
6 | * Copyright (C) 2007 - 2008 Kai Winter |
||
7 | * |
||
8 | * This program is free software: you can redistribute it and/or modify |
||
9 | * it under the terms of the GNU Lesser General Public License as published by |
||
10 | * the Free Software Foundation, either version 3 of the License, or |
||
11 | * (at your option) any later version. |
||
12 | * |
||
13 | * This program is distributed in the hope that it will be useful, |
||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
16 | * GNU Lesser General Public License for more details. |
||
17 | * |
||
18 | * You should have received a copy of the GNU Lesser General Public License |
||
19 | * along with QMapControl. If not, see <http://www.gnu.org/licenses/>. |
||
20 | * |
||
21 | * Contact e-mail: kaiwinter@gmx.de |
||
22 | * Program URL : http://qmapcontrol.sourceforge.net/ |
||
23 | * |
||
24 | */ |
||
25 | |||
26 | #ifndef YAHOOMAPADAPTER_H |
||
27 | #define YAHOOMAPADAPTER_H |
||
28 | |||
29 | #include "tilemapadapter.h" |
||
30 | |||
31 | namespace qmapcontrol |
||
32 | { |
||
33 | //! MapAdapter for Yahoo Maps |
||
34 | /*! |
||
35 | * @author Kai Winter <kaiwinter@gmx.de> |
||
36 | */ |
||
37 | class YahooMapAdapter : public TileMapAdapter |
||
38 | { |
||
39 | Q_OBJECT |
||
40 | |||
41 | public: |
||
42 | //! constructor |
||
43 | /*! |
||
44 | * This construct a Yahoo Adapter |
||
45 | */ |
||
46 | YahooMapAdapter(); |
||
47 | YahooMapAdapter(QString host, QString url); |
||
48 | virtual ~YahooMapAdapter(); |
||
49 | bool isValid(int x, int y, int z) const; |
||
50 | |||
51 | protected: |
||
52 | virtual int tilesonzoomlevel(int zoomlevel) const; |
||
53 | virtual int yoffset(int y) const; |
||
54 | }; |
||
55 | } |
||
56 | #endif |