diff options
author | Keith Packard <keithp@keithp.com> | 2014-06-11 18:46:47 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-06-11 18:46:47 -0700 |
commit | db2443fdbf65b65703217174303027c439124a83 (patch) | |
tree | dd18a92bddd7d39f2a37c46c045e06767fcf0a99 /altosui/AltosUI.java | |
parent | ac33ca137551e32235cd2a0304da4b5e7af51a44 (diff) |
altosuilib: Rewrite map GUI bits
Use a single large Canvas and draw images on top by hand.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r-- | altosui/AltosUI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 302f623f..6137487c 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -280,7 +280,7 @@ public class AltosUI extends AltosUIFrame { } void LoadMaps() { - new AltosSiteMapPreload(AltosUI.this); + new AltosUIMapPreload(AltosUI.this); } void LaunchController() { @@ -578,7 +578,7 @@ public class AltosUI extends AltosUIFrame { } else { double lat = Double.parseDouble(args[i+1]); double lon = Double.parseDouble(args[i+2]); - AltosSiteMap.prefetchMaps(lat, lon); +// AltosSiteMap.prefetchMaps(lat, lon); i += 2; } } else if (args[i].equals("--replay")) |