mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-20 20:29:10 +02:00
Compare commits
2 Commits
e6bc548524
...
1480f8ad02
Author | SHA1 | Date | |
---|---|---|---|
1480f8ad02 | |||
b73ad9772f |
@ -10,7 +10,6 @@
|
|||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include <QJniObject>
|
#include <QJniObject>
|
||||||
#endif // Q_OS_ANDROID
|
#endif // Q_OS_ANDROID
|
||||||
|
|
||||||
#include "common/programpaths.h"
|
#include "common/programpaths.h"
|
||||||
#include "common/config.h"
|
#include "common/config.h"
|
||||||
#include "common/downloader.h"
|
#include "common/downloader.h"
|
||||||
|
@ -185,7 +185,7 @@ PathItem *MapView::addRoute(const Route &route)
|
|||||||
ri->setVisible(_showRoutes);
|
ri->setVisible(_showRoutes);
|
||||||
ri->showWaypoints(_showRouteWaypoints);
|
ri->showWaypoints(_showRouteWaypoints);
|
||||||
ri->showWaypointLabels(_showWaypointLabels);
|
ri->showWaypointLabels(_showWaypointLabels);
|
||||||
ri->showWaypointIcons(_showWaypointLabels);
|
ri->showWaypointIcons(_showWaypointIcons);
|
||||||
ri->setDigitalZoom(_digitalZoom);
|
ri->setDigitalZoom(_digitalZoom);
|
||||||
ri->setMarkerColor(_markerColor);
|
ri->setMarkerColor(_markerColor);
|
||||||
ri->showMarker(_showMarkers);
|
ri->showMarker(_showMarkers);
|
||||||
|
@ -74,7 +74,7 @@ WaypointItem::WaypointItem(const Waypoint &waypoint, Map *map,
|
|||||||
QGraphicsItem *parent) : GraphicsItem(parent)
|
QGraphicsItem *parent) : GraphicsItem(parent)
|
||||||
{
|
{
|
||||||
_waypoint = waypoint;
|
_waypoint = waypoint;
|
||||||
_showLabel = true;
|
_showLabel = false;
|
||||||
_showIcon = false;
|
_showIcon = false;
|
||||||
_size = 8;
|
_size = 8;
|
||||||
_color = Qt::black;
|
_color = Qt::black;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user