1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 14:53:21 +02:00

Updated map info text

Deleted obsolete stuff
This commit is contained in:
Martin Tůma 2018-01-14 23:33:13 +01:00
parent 9f1f06577c
commit c535632eb6
2 changed files with 14 additions and 19 deletions

View File

@ -626,29 +626,26 @@ void GUI::dataSources()
QMessageBox msgBox(this); QMessageBox msgBox(this);
msgBox.setWindowTitle(tr("Data sources")); msgBox.setWindowTitle(tr("Data sources"));
msgBox.setText("<h3>" + tr("Data sources") + "</h3>"); msgBox.setText("<h3>" + tr("Maps") + "</h3>");
msgBox.setInformativeText( msgBox.setInformativeText(
"<h4>" + tr("Online maps") + "</h4><p>" + "<p>" + tr("Maps are loaded on program startup from the following "
+ tr("Online map URLs are read on program startup from the " "directory:")
"following file:") + "</p><p><code>" + USER_MAP_DIR + "</code></p>"
+ "</p><p><code>" + USER_MAP_FILE + "</code></p><p>"
+ tr("The file format is one map entry per line, consisting of the map " + "<h4>" + tr("Online maps") + "</h4><p>"
"name, tiles URL and an optional maximal zoom level delimited by " + tr("The online map list file format is one map entry per line, "
"a TAB character. The tile X and Y coordinates are replaced with $x " "consisting of the map name, tiles URL and an optional maximal zoom "
"and $y in the URL and the zoom level is replaced with $z. An example " "level delimited by a TAB character. The tile X and Y coordinates are "
"map file could look like:") "replaced with $x and $y in the URL and the zoom level is replaced "
"with $z. An example online map list file could look like:")
+ "</p><p><code>Map1 http://tile.server.com/map/$z/$x/$y.png 15" + "</p><p><code>Map1 http://tile.server.com/map/$z/$x/$y.png 15"
"<br/>Map2 http://mapserver.org/map/$z-$x-$y</code></p>" "<br/>Map2 http://mapserver.org/map/$z-$x-$y</code></p>"
+ "<h4>" + tr("Offline maps") + "</h4><p>" + "<h4>" + tr("Offline maps") + "</h4><p>"
+ tr("Offline maps are loaded on program startup from the following " " Supported map formats are OziExplorer maps, TrekBuddy maps/atlases "
"directory:") " (tared and non-tared) and GeoTIFF images." + "</p>"
+ "</p><p><code>" + USER_MAP_DIR + "</code></p><p>"
+ tr("The expected structure is one map/atlas in a separate subdirectory."
" Supported map formats are OziExplorer maps and TrekBuddy maps/atlases"
" (tared and non-tared).") + "</p>"
+ "<h4>" + tr("POIs") + "</h4><p>" + "<h3>" + tr("POIs") + "</h3><p>"
+ tr("To make GPXSee load a POI file automatically on startup, add " + tr("To make GPXSee load a POI file automatically on startup, add "
"the file to the following directory:") "the file to the following directory:")
+ "</p><p><code>" + USER_POI_DIR + "</code></p>" + "</p><p><code>" + USER_POI_DIR + "</code></p>"

View File

@ -35,13 +35,11 @@
#define USER_DATUM_FILE USER_DIR + QString("/") + DATUM_FILE #define USER_DATUM_FILE USER_DIR + QString("/") + DATUM_FILE
#define USER_PCS_FILE USER_DIR + QString("/") + PCS_FILE #define USER_PCS_FILE USER_DIR + QString("/") + PCS_FILE
#define USER_MAP_DIR USER_DIR + QString("/") + MAP_DIR #define USER_MAP_DIR USER_DIR + QString("/") + MAP_DIR
#define USER_MAP_FILE USER_DIR + QString("/") + MAP_FILE
#define USER_POI_DIR USER_DIR + QString("/") + POI_DIR #define USER_POI_DIR USER_DIR + QString("/") + POI_DIR
#define GLOBAL_ELLIPSOID_FILE GLOBAL_DIR + QString("/") + ELLIPSOID_FILE #define GLOBAL_ELLIPSOID_FILE GLOBAL_DIR + QString("/") + ELLIPSOID_FILE
#define GLOBAL_DATUM_FILE GLOBAL_DIR + QString("/") + DATUM_FILE #define GLOBAL_DATUM_FILE GLOBAL_DIR + QString("/") + DATUM_FILE
#define GLOBAL_PCS_FILE GLOBAL_DIR + QString("/") + PCS_FILE #define GLOBAL_PCS_FILE GLOBAL_DIR + QString("/") + PCS_FILE
#define GLOBAL_MAP_DIR GLOBAL_DIR + QString("/") + MAP_DIR #define GLOBAL_MAP_DIR GLOBAL_DIR + QString("/") + MAP_DIR
#define GLOBAL_MAP_FILE GLOBAL_DIR + QString("/") + MAP_FILE
#define GLOBAL_POI_DIR GLOBAL_DIR + QString("/") + POI_DIR #define GLOBAL_POI_DIR GLOBAL_DIR + QString("/") + POI_DIR
#define TILES_DIR USER_DIR + QString("/tiles") #define TILES_DIR USER_DIR + QString("/tiles")