diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-02-09 21:23:54 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-09 12:44:05 -0800 |
commit | 8af81628092514318fee6db1017167e20719f025 (patch) | |
tree | 2c1e7acb4cde09b53fea03d15d763072a48a2d88 /gps.c | |
parent | 5ce9d7603b44eb5d2675cc6f49196256cf6ce4d5 (diff) | |
download | subsurface-8af81628092514318fee6db1017167e20719f025.tar.gz |
Switch to satellite image map provider
The current google map provider doesn't show coast lines properly and
a lot of islands aren't shown at all.
OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_HYBRID is much better IMHO.
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gps.c')
-rw-r--r-- | gps.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,9 +18,9 @@ static GtkWidget *window = NULL; static OsmGpsMap *map = NULL; /* Several map providers are available, such as OSM_GPS_MAP_SOURCE_OPENSTREETMAP - and OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_SATELLITE. We should make more of + and OSM_GPS_MAP_SOURCE_GOOGLE_STREET. We should make more of them available from e.g. a pull-down menu */ -static OsmGpsMapSource_t opt_map_provider = OSM_GPS_MAP_SOURCE_GOOGLE_STREET; +static OsmGpsMapSource_t opt_map_provider = OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_HYBRID; static void on_close(GtkWidget *widget, gpointer user_data) |