diff options
author | Keith Packard <keithp@keithp.com> | 2018-10-07 10:01:30 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-07 10:01:30 -0700 |
commit | 5c957107ee5917d865eb866319f86cf8c109f212 (patch) | |
tree | 41ad62be720a8c86d6775c2a3dfd502134344e35 /altoslib/AltosMap.java | |
parent | e4f4183ce206d4cb7bbc89e1065eb34b05cf11c4 (diff) |
altosui/altosdroid: Disable offline map type selections
Our server only supports hybrid maps for now. If that changes, we can
re-add this support easily enough.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosMap.java')
-rw-r--r-- | altoslib/AltosMap.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/altoslib/AltosMap.java b/altoslib/AltosMap.java index e183e933..9e5f578d 100644 --- a/altoslib/AltosMap.java +++ b/altoslib/AltosMap.java @@ -211,12 +211,14 @@ public class AltosMap implements AltosMapTileListener, AltosMapStoreListener { } public boolean set_maptype(int maptype) { +/* if (maptype != this.maptype) { this.maptype = maptype; tiles.clear(); repaint(); return true; } +*/ return false; } @@ -350,7 +352,7 @@ public class AltosMap implements AltosMapTileListener, AltosMapStoreListener { public void set_load_params(int new_zoom, int new_type, double lat, double lon, int radius, AltosMapTileListener listener) { if (AltosMap.min_zoom <= new_zoom && new_zoom <= AltosMap.max_zoom) zoom = new_zoom; - maptype = new_type; +/* maptype = new_type; */ load_centre = new AltosLatLon(lat, lon); load_radius = radius; load_listener = listener; |