Loading a URL with lat/lng/zoom specified does not work (#414)

This commit is contained in:
Nat Hillard 2021-07-27 20:51:35 -04:00 committed by GitHub
commit 3238e09792
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 27168 additions and 58 deletions

View file

@ -1,9 +1,8 @@
import React from 'react';
import Layout from '../components/layout';
import J40Map from '../components/J40Map';
import MapWrapper from '../components/mapWrapper';
import HowYouCanHelp from '../components/HowYouCanHelp';
import DownloadPacket from '../components/downloadPacket';
import MapLegend from '../components/mapLegend';
import * as styles from './cejst.module.scss';
interface IMapPageProps {
@ -52,9 +51,7 @@ const CEJSTPage = ({location}: IMapPageProps) => {
<DownloadPacket />
</div>
</section>
<h2>Explore the Tool</h2>
<J40Map location={location}/>
<MapLegend />
<MapWrapper location={location} />
<HowYouCanHelp />
</main>
</Layout>