react-code-dataset / wp-calypso /client /my-sites /stats /features /modules /stats-locations /sample-locations.js
| const sampleLocations = [ | |
| { | |
| label: 'California', | |
| countryCode: 'US', | |
| value: 2000, | |
| coordinates: { latitude: '36.7783', longitude: '-119.4179' }, | |
| }, | |
| { | |
| label: 'Uttar Pradesh', | |
| countryCode: 'IN', | |
| value: 1500, | |
| coordinates: { latitude: '27.1303', longitude: '80.8590' }, | |
| }, | |
| { | |
| label: 'England', | |
| countryCode: 'GB', | |
| value: 1200, | |
| coordinates: { latitude: '52.3555', longitude: '-1.1743' }, | |
| }, | |
| { | |
| label: 'Ontario', | |
| countryCode: 'CA', | |
| value: 1000, | |
| coordinates: { latitude: '51.2538', longitude: '-85.3232' }, | |
| }, | |
| { | |
| label: 'North Rhine-Westphalia', | |
| countryCode: 'DE', | |
| value: 900, | |
| coordinates: { latitude: '51.4332', longitude: '7.6616' }, | |
| }, | |
| { | |
| label: 'West Java', | |
| countryCode: 'ID', | |
| value: 800, | |
| coordinates: { latitude: '-6.8897', longitude: '107.6405' }, | |
| }, | |
| { | |
| label: 'Tokyo', | |
| countryCode: 'JP', | |
| value: 700, | |
| coordinates: { latitude: '35.6895', longitude: '139.6917' }, | |
| }, | |
| { | |
| label: 'São Paulo', | |
| countryCode: 'BR', | |
| value: 600, | |
| coordinates: { latitude: '-23.5505', longitude: '-46.6333' }, | |
| }, | |
| { | |
| label: 'North Holland', | |
| countryCode: 'NL', | |
| value: 500, | |
| coordinates: { latitude: '52.5200', longitude: '4.6707' }, | |
| }, | |
| { | |
| label: 'Andalusia', | |
| countryCode: 'ES', | |
| value: 400, | |
| coordinates: { latitude: '37.5443', longitude: '-4.7278' }, | |
| }, | |
| ]; | |
| export default sampleLocations; | |