revert part of whitespace changes

This commit is contained in:
Mateusz Konieczny 2021-12-03 20:32:54 +01:00
parent 611772efa8
commit 6551d9742f

View File

@ -51,7 +51,7 @@ class ColouringMap extends Component<ColouringMapProps, ColouringMapState> {
this.themeSwitch = this.themeSwitch.bind(this);
}
handleLocate(lat: number, lng: number, zoom: number) {
handleLocate(lat: number, lng: number, zoom: number){
this.setState({
position: [lat, lng],
zoom: zoom
@ -69,8 +69,8 @@ class ColouringMap extends Component<ColouringMapProps, ColouringMapState> {
themeSwitch(e) {
e.preventDefault();
const newTheme = (this.state.theme === 'light') ? 'night' : 'light';
this.setState({ theme: newTheme });
const newTheme = (this.state.theme === 'light')? 'night' : 'light';
this.setState({theme: newTheme});
}
render() {
@ -99,7 +99,7 @@ class ColouringMap extends Component<ColouringMapProps, ColouringMapState> {
<Pane
key={this.state.theme}
name={'cc-base-pane'}
style={{ zIndex: 50 }}
style={{zIndex: 50}}
>
<CityBaseMapLayer theme={this.state.theme} />
<BuildingBaseLayer theme={this.state.theme} />
@ -115,7 +115,7 @@ class ColouringMap extends Component<ColouringMapProps, ColouringMapState> {
<Pane
name='cc-overlay-pane'
style={{ zIndex: 300 }}
style={{zIndex: 300}}
>
<CityBoundaryLayer />
<BuildingNumbersLayer revisionId={this.props.revisionId} />
@ -129,7 +129,7 @@ class ColouringMap extends Component<ColouringMapProps, ColouringMapState> {
</Pane>
<ZoomControl position="topright" />
<AttributionControl prefix="" />
<AttributionControl prefix=""/>
</MapContainer>
{
this.props.mode !== 'basic' &&
@ -150,13 +150,13 @@ class ColouringMap extends Component<ColouringMapProps, ColouringMapState> {
}
}
function ClickHandler({ onClick }: { onClick: (e) => void }) {
function ClickHandler({ onClick }: {onClick: (e) => void}) {
useMapEvent('click', (e) => onClick(e));
return null;
}
function MapBackgroundColor({ theme }: { theme: MapTheme }) {
function MapBackgroundColor({ theme}: {theme: MapTheme}) {
const map = useMap();
useEffect(() => {
map.getContainer().style.backgroundColor = mapBackgroundColor[theme];