diff options
author | Keith Packard <keithp@keithp.com> | 2015-05-25 20:33:28 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-05-25 20:33:28 -0700 |
commit | 68effc6e39f731a2d7bbe2963999c1e785118897 (patch) | |
tree | e34249f6547776185ead471e60ab76244a3480c5 /altoslib/AltosMapTile.java | |
parent | 00aca369c4070901e0400f291d5f269b5fb8015c (diff) |
altoslib: More frobbing with new map bits
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosMapTile.java')
-rw-r--r-- | altoslib/AltosMapTile.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/altoslib/AltosMapTile.java b/altoslib/AltosMapTile.java index 923b7c6b..92b7a985 100644 --- a/altoslib/AltosMapTile.java +++ b/altoslib/AltosMapTile.java @@ -22,13 +22,13 @@ import java.util.*; public abstract class AltosMapTile implements AltosFontListener { AltosMapTileListener listener; - AltosLatLon upper_left, center; - int px_size; + public AltosLatLon upper_left, center; + public int px_size; int zoom; int maptype; - AltosMapStore store; - AltosMapCache cache; - int status; + public AltosMapStore store; + public AltosMapCache cache; + public int status; static public final int success = 0; static public final int loading = 1; |