-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocations.js
More file actions
37 lines (36 loc) · 834 Bytes
/
locations.js
File metadata and controls
37 lines (36 loc) · 834 Bytes
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
var locations = [
{
cityName: 'Tokyo',
alternateCityName: '東京',
stateName: 'Tokyo',
alternateStateName: '東京',
countryName: 'Japan',
alternateCountryName: '日本',
longitude: 35.652832,
latitude: 139.839478,
numberOfMonsters: 1
},
{
cityName: 'Sapparo',
alternateCityName: '札幌市',
stateName: 'Hokkaido',
alternateStateName: '北海道',
countryName: 'Japan',
alternateCountryName: '日本',
longitude: 43.0621,
latitude: 141.3544,
numberOfMonsters: 1
},
{
cityName: 'Osaka',
alternateCityName: '大阪',
stateName: 'Osaka',
alternateStateName: '大阪',
countryName: 'Japan',
alternateCountryName: '日本',
longitude: 34.6937,
latitude: 135.5022,
numberOfMonsters: 1
}
]
module.exports = locations;