mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-25 16:02:50 +00:00
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
import React, {PureComponent} from 'react';
|
|
|
|
const defaultContainer = ({children}) => <div className="control-panel">{children}</div>;
|
|
|
|
export default class ControlPanel extends PureComponent {
|
|
render() {
|
|
const Container = this.props.containerComponent || defaultContainer;
|
|
const {settings} = this.props;
|
|
|
|
return (
|
|
<Container>
|
|
<h3>Interactive GeoJSON</h3>
|
|
<p>Map showing median household income by state in year <b>{settings.year}</b>.
|
|
Hover over a state to see details.</p>
|
|
<p>Data source: <a href="www.census.gov">US Census Bureau</a></p>
|
|
<div className="source-link">
|
|
<a href="https://github.com/uber/react-map-gl/tree/3.2-release/examples/geojson" target="_new">View Code ↗</a>
|
|
</div>
|
|
<hr />
|
|
|
|
<div key={name} className="input">
|
|
<label>Year</label>
|
|
<input type="range" value={settings.year}
|
|
min={1995} max={2015} step={1}
|
|
onChange={evt => this.props.onChange('year', evt.target.value)} />
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
}
|