Subsurface-mobile: do send decimal GPS to Google

Sending nicely readable formatted coordinates to Google Maps does not
result in a correctly positioned map. Google likes unreadable
decimal format.

Little hacky solution. Added a gps_decimal attribute, populate that
with the standard function for format a coordinate to string, but
reset the preferences value temporarly so that it always converts it
to decimal style.

Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
Jan Mulder 2017-03-21 17:52:29 +01:00 committed by Dirk Hohndel
parent 6e38619970
commit d6003209d6
4 changed files with 17 additions and 3 deletions

View file

@ -18,6 +18,7 @@ class DiveObjectHelper : public QObject {
Q_PROPERTY(int timestamp READ timestamp CONSTANT)
Q_PROPERTY(QString location READ location CONSTANT)
Q_PROPERTY(QString gps READ gps CONSTANT)
Q_PROPERTY(QString gps_decimal READ gps_decimal CONSTANT)
Q_PROPERTY(QString duration READ duration CONSTANT)
Q_PROPERTY(bool noDive READ noDive CONSTANT)
Q_PROPERTY(QString depth READ depth CONSTANT)
@ -60,6 +61,7 @@ public:
QString time() const;
QString location() const;
QString gps() const;
QString gps_decimal() const;
QString duration() const;
bool noDive() const;
QString depth() const;