From fb729d00fee68d951fc691847c1d1f95a82feda5 Mon Sep 17 00:00:00 2001 From: HariiHe <71579063+HariiHe@users.noreply.github.com> Date: Mon, 25 Jul 2022 07:49:46 -0700 Subject: [PATCH 1/2] Improve README --- README | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README b/README index 1b1e62d..4d0f655 100644 --- a/README +++ b/README @@ -1,3 +1,4 @@ +# WorldMap WorldMap is a simple Android app that displays a map of the world taken from Wikimedia (http://upload.wikimedia.org/wikipedia/commons/3/33/Physical_Political_World_Map.jpg), and allows the user to scroll around on it. Note the map is from wikipedia and licensed as public domain (see http://en.wikipedia.org/wiki/File:Physical_Political_World_Map.jpg). The map itself is quite large (6480,3888), so it's way too big to fit in memory all at once (6480 x 3888 x 32 / 8) = 100,776,960 -- over 96 megs. The VM heap size Android supports is eith 16 or 24 megs, so we can't fit the whole thing in memory at once. @@ -6,7 +7,7 @@ So WorldMap uses the BitmapRegionDecoder API (available as of API 10) to decode WorldMap is available on the Google Play store here: https://play.google.com/store/apps/details?id=com.sigseg.android.worldmap -Road Map +# Road Map -------- * Add flinging to move quickly across the map From d10b1c8818f5cdfce6018908654ae4db6ff4a12c Mon Sep 17 00:00:00 2001 From: HariiHe <71579063+HariiHe@users.noreply.github.com> Date: Mon, 25 Jul 2022 07:51:29 -0700 Subject: [PATCH 2/2] Rename README to README.md --- README => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.md (100%) diff --git a/README b/README.md similarity index 100% rename from README rename to README.md