From 733af01050fee8454d1b79b8cc7779c58740acab Mon Sep 17 00:00:00 2001 From: Vonter <25414711+Vonter@users.noreply.github.com> Date: Fri, 6 Dec 2024 08:08:30 +0530 Subject: [PATCH] Add 2000 map for BLR region --- README.md | 3 ++- src/lib/components/About.svelte | 14 +++++++++++--- src/lib/components/Map.svelte | 3 ++- src/lib/components/Slider.svelte | 10 +++++----- 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e6a2c5a..25ab700 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,8 @@ The maps have been sourced from multiple places: - 1900: https://britishlibrary.oldmapsonline.org/maps/5c5f6ea9-8f24-5df6-9fc1-ad11ecfbcdc1/ - 1910: https://www.raremaps.com/gallery/detail/55788/map-of-country-10-miles-around-bangalore-anonymous - 1940: https://umedia.lib.umn.edu/item/p16022coll246:577 -- 2000: [Bengawalk](https://bengawalk.com) +- 2000 (City): [Bengawalk](https://bengawalk.com) +- 2000 (Region): [Bengawalk](https://bengawalk.com) - 2005: https://www.arcgis.com/home/item.html?id=903f0abe9c3b452dafe1ca5b8dd858b9 - 2015: https://www.arcgis.com/home/item.html?id=9badc1f6b6a64a609a87fc75e8a6b083 - Today: https://www.arcgis.com/home/item.html?id=10df2279f9684e4a9f6a7f08febac2a9 diff --git a/src/lib/components/About.svelte b/src/lib/components/About.svelte index 6d822e3..72f982e 100644 --- a/src/lib/components/About.svelte +++ b/src/lib/components/About.svelte @@ -56,10 +56,18 @@
  • 1900: Published in 1935 (John Bartholomew)
  • 1910: Published in 1910 (Litho. School 2nd Q.V.O.S. & M in Bangalore)
  • 1940: Surveyed 1935-36. Published in 1948 (Survey of India)
  • -
  • 2000: Surveyed 1997-99. Published in 2002 (Survey of India)
  • -
  • 2005: Satellite images captured over multiple years through the 2000s (ESRI)
  • +
  • 2000 (City): Surveyed 1997-99. Published in 2002 (Survey of India)
  • - 2015: Satellite images captured over multiple years through the early 2010s (ESRI) + 2000 (Region): Surveyed across multiple decades in the late 20th Century. Major + details updated around 2000. Published in 2011 (Survey of India) +
  • +
  • + 2005: Satellite images captured in different areas across multiple years through the + 2000s (ESRI) +
  • +
  • + 2015: Satellite images captured in different areas across multiple years through the + early 2010s (ESRI)
  • Today: Satellite images captured after 2022 (ESRI)
  • diff --git a/src/lib/components/Map.svelte b/src/lib/components/Map.svelte index bdc44f7..10ee3af 100644 --- a/src/lib/components/Map.svelte +++ b/src/lib/components/Map.svelte @@ -20,7 +20,8 @@ { year: 1898, label: '1900' }, { year: 1910, label: '1910' }, { year: 1940, label: '1940' }, - { year: 2002, label: '2000' }, + { year: 2002, label: '2000 (City)' }, + { year: 2003, label: '2000 (Region)' }, { year: 2009, label: '2005' }, { year: 2015, label: '2015' }, { year: 2024, label: 'Today' } diff --git a/src/lib/components/Slider.svelte b/src/lib/components/Slider.svelte index 14fc505..8d22cf4 100644 --- a/src/lib/components/Slider.svelte +++ b/src/lib/components/Slider.svelte @@ -13,7 +13,7 @@
    @@ -38,7 +38,7 @@ /> -
    +
    {#if currentYearIndex > 0} {availableYears[currentYearIndex - 1].label} @@ -47,7 +47,7 @@
    -
    +
    {availableYears[currentYearIndex].label}
    @@ -101,7 +101,7 @@ -
    +
    {#if currentYearIndex < availableYears.length - 1} {availableYears[currentYearIndex + 1].label} @@ -111,7 +111,7 @@
    -
    +
    {#each availableYears as year, i}