File size: 3,268 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
// @flow
import * as React from "react";
import {
ComposableMap,
ZoomableGroup,
Geographies,
Geography,
} from "react-simple-maps";
import data from "./data/world-50m.json";
import { scaleLinear } from "d3-scale";
const wrapperStyles = {
width: "100%",
height: "auto",
maxWidth: "100%",
margin: "0 auto",
fontFamily: "Roboto, sans-serif",
};
type State = {
origin: { x: number, y: number },
content: string,
};
const popScale = scaleLinear()
.domain([0, 100000000, 1400000000])
.range(["#CFD8DC", "#607D8B", "#37474F"]);
class ReactSimpleMap extends React.PureComponent<void, State> {
state = {
origin: { x: 0, y: 0 },
content: "",
};
handleMove = (
geography: { properties: { name: string, pop_est: string } },
evt: SyntheticMouseEvent<>
): void => {
const x = evt.clientX;
const y = evt.clientY + window.pageYOffset;
this.setState({
origin: { x, y },
content: geography.properties.name + ": " + geography.properties.pop_est,
});
};
handleLeave = (): void => {
this.setState({ content: "" });
};
render() {
return (
<div style={wrapperStyles}>
{this.state.content && (
<div
style={{
position: "fixed",
top: this.state.origin.y + 20 - window.scrollY,
left: this.state.origin.x,
zIndex: 999999,
textAlign: "center",
border: "1px grey solid",
borderRadius: 3,
padding: 4,
backgroundColor: "#fff",
}}
>
{this.state.content}
</div>
)}
<ComposableMap
projectionConfig={{
scale: 205,
rotation: [-11, 0, 0],
}}
style={{
width: "100%",
height: "auto",
}}
width={900}
>
<ZoomableGroup center={[0, 20]}>
<Geographies geography={data}>
{(geographies, projection) =>
geographies.map((geography, i) => (
<Geography
key={i}
geography={geography}
projection={projection}
onMouseMove={this.handleMove}
onMouseLeave={this.handleLeave}
style={{
default: {
fill: popScale(geography.properties.pop_est),
stroke: "#607D8B",
strokeWidth: 0.75,
outline: "none",
},
hover: {
fill: "#263238",
stroke: "#607D8B",
strokeWidth: 0.75,
outline: "none",
},
pressed: {
fill: "#263238",
stroke: "#607D8B",
strokeWidth: 0.75,
outline: "none",
},
}}
/>
))
}
</Geographies>
</ZoomableGroup>
</ComposableMap>
</div>
);
}
}
export default ReactSimpleMap;
|