Skip to content

Commit

Permalink
Merge pull request #92 from earthrise-media/remove-population-map-option
Browse files Browse the repository at this point in the history
Remove population map option
  • Loading branch information
Martin Bernard authored Nov 30, 2023
2 parents c02bf64 + 41e82d0 commit 6a91bc8
Showing 1 changed file with 0 additions and 48 deletions.
48 changes: 0 additions & 48 deletions vacs-map-app/src/MapExplorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,8 @@
import { computed, onMounted, onUnmounted, ref } from 'vue'
import { storeToRefs } from 'pinia'
import { useResizeObserver } from '@vueuse/core'
import MapContainerColor from '@/components/MapContainerColor.vue'
import MapContainerColorAcrossScenarios from './components/MapContainerColorAcrossScenarios.vue'
import MapContainerColorRadius from '@/components/MapContainerColorRadius.vue'
import MapContainerNotFilled from '@/components/MapContainerNotFilled.vue'
import MapContainerNotFilledTwoLayers from '@/components/MapContainerNotFilledTwoLayers.vue'
import MapContainerColorAfricanUnion from '@/components/MapContainerColorAfricanUnion.vue'
import MapContainerColorSandSoil from '@/components/MapContainerColorSandSoil.vue'
import MapContainerColorSoil from '@/components/MapContainerColorSoil.vue'
import MapContainerColorSand from '@/components/MapContainerColorSand.vue'
import MapContainerColorPopulation from '@/components/MapContainerColorPopulation.vue'
import { useMapExploreStore } from '@/stores/mapExplore'
import LayoutOpen from './components/layouts/LayoutOpen.vue'
import ExploreSidebar from './components/ExploreSidebar.vue'
Expand All @@ -54,55 +46,15 @@ import MapLegend from '@/components/MapLegend.vue'
import OverviewTop from '@/components/OverviewTop.vue'
const availableMaps = [
// {
// id: 'just-color',
// name: 'dynamic color',
// component: MapContainerColor
// },
{
id: 'color-across-scenarios',
name: 'Default',
component: MapContainerColorAcrossScenarios
},
// {
// id: 'color-and-radius-1',
// name: 'dynamic color and radius (cropyield)',
// component: MapContainerColorRadius
// },
// {
// id: 'not-filled',
// name: 'circles not filled',
// component: MapContainerNotFilled
// },
// {
// id: 'not-filled-2',
// name: 'circles not filled, two layers',
// component: MapContainerNotFilledTwoLayers
// },
// {
// id: 'african-union',
// name: 'circles + african union regions',
// component: MapContainerColorAfricanUnion
// },
{
id: 'sand-soil',
name: 'Sand + Soil',
component: MapContainerColorSandSoil
},
// {
// id: 'soil',
// name: 'circles + soil carbon',
// component: MapContainerColorSoil
// },
// {
// id: 'sand',
// name: 'circles + sand',
// component: MapContainerColorSand
// },
{
id: 'population',
name: 'Population',
component: MapContainerColorPopulation
}
]
Expand Down

0 comments on commit 6a91bc8

Please sign in to comment.