Various map styling fixes (#278)

Addresses #182, #291, #273 and #191 

In particular:
* Removes zoom fading for now
* adds legend
* Styles mapbox popup correctly
* Styles zoom control
* Adds feature borders at higher zoom levels
This commit is contained in:
Nat Hillard 2021-07-01 12:57:59 -04:00 committed by GitHub
commit beac44ef20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 236 additions and 187 deletions

View file

@ -1,10 +1,9 @@
import React from 'react';
import Layout from '../components/layout';
// import MapWrapper from '../components/map';
import MapWrapper from '../components/mapWrapper';
import HowYouCanHelp from '../components/HowYouCanHelp';
import MapLegend from '../components/mapLegend';
import * as styles from './cejst.module.scss';
import MapLegend from '../components/MapLegend';
interface IMapPageProps {
@ -35,8 +34,8 @@ const CEJSTPage = ({location}: IMapPageProps) => {
</p>
<h2>Explore the Tool</h2>
<MapWrapper/>
<MapLegend/>
<HowYouCanHelp/>
<MapLegend />
<HowYouCanHelp />
</main>
</Layout>
);