mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-07 02:04:18 -07:00
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:
parent
f4f7c35ca8
commit
beac44ef20
20 changed files with 236 additions and 187 deletions
|
@ -2,7 +2,6 @@ import * as React from 'react';
|
|||
import {useFlags} from '../contexts/FlagContext';
|
||||
import MapboxMap from './mapboxMap';
|
||||
import OpenLayersMap from './openlayersMap';
|
||||
import * as constants from '../data/constants';
|
||||
|
||||
const MapWrapper = () => {
|
||||
const flags = useFlags();
|
||||
|
@ -13,7 +12,6 @@ const MapWrapper = () => {
|
|||
<MapboxMap /> :
|
||||
<OpenLayersMap features={[]}/>
|
||||
}
|
||||
<p>Current Score Property: {constants.SCORE_PROPERTY}</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue