-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworldMapData.js
More file actions
13 lines (13 loc) · 991 Bytes
/
Copy pathworldMapData.js
File metadata and controls
13 lines (13 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
// Example SVG path data for a few countries
export default [
{ id: 'United States', path: 'M150,120 L180,115 L185,125 L175,135 L160,138 L145,130 Z' },
{ id: 'United Kingdom', path: 'M420,95 L425,92 L430,95 L428,100 L422,102 L418,98 Z' },
{ id: 'France', path: 'M430,115 L438,112 L445,118 L442,125 L435,127 L428,122 Z' },
{ id: 'Germany', path: 'M445,105 L453,102 L460,108 L457,115 L450,117 L443,112 Z' },
{ id: 'Japan', path: 'M780,130 L790,125 L798,132 L795,142 L785,145 L778,138 Z' },
{ id: 'Australia', path: 'M750,280 L780,275 L800,285 L805,305 L795,320 L770,325 L745,315 L740,295 Z' },
{ id: 'Brazil', path: 'M280,220 L310,215 L330,230 L335,260 L320,285 L295,290 L270,275 L265,245 Z' },
{ id: 'South Africa', path: 'M480,310 L500,305 L515,315 L518,330 L510,345 L490,348 L475,338 L472,320 Z' },
{ id: 'Hong Kong', path: 'M720,180 L728,178 L732,183 L730,188 L723,189 L718,185 Z' },
{ id: 'Belize', path: 'M180,190 L188,188 L193,193 L191,200 L185,202 L178,197 Z' }
];