X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fpages%2FMap.js;h=3cbd31f6025367f1bb98f3d16f3adc7e8f245cb2;hb=d256e01621a8b1072365ae0893002dccb7661898;hp=50a28fbfe1bf89a731addb2607f34bc5b2197c55;hpb=18424fc6de2fc902ee2b2d3143955081263adff4;p=alttp.git diff --git a/resources/js/components/pages/Map.js b/resources/js/components/pages/Map.js index 50a28fb..3cbd31f 100644 --- a/resources/js/components/pages/Map.js +++ b/resources/js/components/pages/Map.js @@ -1,21 +1,38 @@ import React from 'react'; import { Container } from 'react-bootstrap'; +import { Helmet } from 'react-helmet'; import { useTranslation } from 'react-i18next'; +import { useParams } from 'react-router'; +import CanonicalLinks from '../common/CanonicalLinks'; import Buttons from '../map/Buttons'; +import List from '../map/List'; import OpenSeadragon from '../map/OpenSeadragon'; +import Pins from '../map/Pins'; +import UWSuperTiles from '../map/UWSuperTiles'; const Map = () => { + const [uwOverlay, setUWOverlay] = React.useState(false); + + const { activeMap } = useParams(); const container = React.useRef(); const { t } = useTranslation(); return + + {t('map.heading')} + + + -
+

{t('map.heading')}

- +
+ + + ; };