aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/google/GoogleMapView.java
diff options
context:
space:
mode:
authorrsudev <rasch@munin-soft.de>2012-10-27 00:17:31 +0200
committerrsudev <rasch@munin-soft.de>2012-11-03 23:24:18 +0100
commitf5343eac8a433b198d47057a112e4c92486906b3 (patch)
treef4eda41be808315c30768ffc362689dec62fda72 /main/src/cgeo/geocaching/maps/google/GoogleMapView.java
parentc942e65f13579e96ef528f8a7641f3571ce963dd (diff)
downloadcgeo-f5343eac8a433b198d47057a112e4c92486906b3.zip
cgeo-f5343eac8a433b198d47057a112e4c92486906b3.tar.gz
cgeo-f5343eac8a433b198d47057a112e4c92486906b3.tar.bz2
Implements #1676, custom themes
- Adds the selection of a base folder for map themes to settings - Reworks the map menu to allow selection of a custom theme - Implements a reusable version of listDir to get a list of files
Diffstat (limited to 'main/src/cgeo/geocaching/maps/google/GoogleMapView.java')
-rw-r--r--main/src/cgeo/geocaching/maps/google/GoogleMapView.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/maps/google/GoogleMapView.java b/main/src/cgeo/geocaching/maps/google/GoogleMapView.java
index f43b6a4..9c134a4 100644
--- a/main/src/cgeo/geocaching/maps/google/GoogleMapView.java
+++ b/main/src/cgeo/geocaching/maps/google/GoogleMapView.java
@@ -189,4 +189,15 @@ public class GoogleMapView extends MapView implements MapViewImpl {
public boolean needsInvertedColors() {
return false;
}
+
+ @Override
+ public boolean hasMapThemes() {
+ // Not supported
+ return false;
+ }
+
+ @Override
+ public void setMapTheme() {
+ // Not supported
+ }
}