Enroute Flight Navigation
A navigation app for VFR pilots
MBTILES.h
1/***************************************************************************
2 * Copyright (C) 2022-2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
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 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QFile>
24#include <QMap>
25#include <QObject>
26#include <QSharedPointer>
27
28#include "fileFormats/DataFileAbstract.h"
29
30
31namespace FileFormats
32{
33
40
41 class MBTILES : public DataFileAbstract
42 {
43
44 public:
46 enum Format : quint8
47 {
50
53
56 };
57
64
72 MBTILES(const QString& fileName);
73
76
82 [[nodiscard]] QString attribution();
83
89
95 [[nodiscard]] QString info();
96
108 [[nodiscard]] QByteArray tile(int zoom, int x, int y);
109
117 [[nodiscard]] QMap<QString, QString> metaData() const
118 {
119 return m_metadata;
120 }
121
126 [[nodiscard]] QString fileName() const
127 {
128 return m_fileName;
129 }
130
131 private:
132 //
133 Q_DISABLE_COPY_MOVE(MBTILES)
134
135 // Name of the MBTILES file
136 QString m_fileName;
137 QSharedPointer<QFile> m_file;
138
139 // Name of the data base connection. This name is unique to each instance of
140 // this class, and should therefore not be copied.
141 QString m_databaseConnectionName;
142 QMap<QString, QString> m_metadata;
143 };
144
145} // namespace FileFormats
Utility class for databases in MBTILES format.
Definition MBTILES.h:42
QByteArray tile(int zoom, int x, int y)
Retrieve tile from an MBTILES file.
QString attribution()
Attribution of MBTILES file.
QString info()
Information about an MBTILES file.
FileFormats::MBTILES::Format format()
Determine type of data contained in an MBTILES file.
Format
Format of data tiles.
Definition MBTILES.h:47
@ Vector
Vector data in PBF format.
Definition MBTILES.h:52
@ Unknown
Unknown format.
Definition MBTILES.h:49
@ Raster
Raster data in JPG, PNG or WEBP format.
Definition MBTILES.h:55
QString fileName() const
Retrieve name of the MBTILES file.
Definition MBTILES.h:126
~MBTILES()
Standard destructor.
MBTILES(const QString &fileName)
Standard constructor.
QMap< QString, QString > metaData() const
Retrieve metadata of the MBTILES file.
Definition MBTILES.h:117
MBTILES()
Standard constructor.