-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
509 lines (508 loc) · 14 KB
/
data.js
File metadata and controls
509 lines (508 loc) · 14 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
const indianStatesAndUTs = [
// --- STATES ---
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [79.4192, 16.5062]
},
"properties": {
"name": "Andhra Pradesh",
"capital": "Amaravati",
"speciality": "Rice Bowl of India & Kuchipudi Dance",
"language": "Telugu",
"details": "Known for the Tirumala Venkateswara Temple and its rich agricultural heritage."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [93.6053, 27.0844]
},
"properties": {
"name": "Arunachal Pradesh",
"capital": "Itanagar",
"speciality": "Land of the Dawn-Lit Mountains",
"language": "English",
"details": "Famous for the Tawang Monastery and diverse tribal cultures."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [91.7362, 26.1158]
},
"properties": {
"name": "Assam",
"capital": "Dispur",
"speciality": "Assam Tea & One-horned Rhinos",
"language": "Assamese",
"details": "Home to Kaziranga National Park and the mighty Brahmaputra river."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [85.1376, 25.5941]
},
"properties": {
"name": "Bihar",
"capital": "Patna",
"speciality": "Cradle of Buddhism & Ancient History",
"language": "Hindi",
"details": "Home to Bodh Gaya, where Buddha attained enlightenment, and the ancient Nalanda University."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [81.6296, 21.2514]
},
"properties": {
"name": "Chhattisgarh",
"capital": "Raipur",
"speciality": "Heavily Forested & Mineral Rich",
"language": "Chhattisgarhi, Hindi",
"details": "Known for its waterfalls (Chitrakote) and steel industries."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [73.8278, 15.4909]
},
"properties": {
"name": "Goa",
"capital": "Panaji",
"speciality": "Beaches & Portuguese Heritage",
"language": "Konkani",
"details": "Famous for its vibrant nightlife, seafood, and the Basilica of Bom Jesus."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [72.6369, 23.2156]
},
"properties": {
"name": "Gujarat",
"capital": "Gandhinagar",
"speciality": "Asiatic Lions & White Desert",
"language": "Gujarati",
"details": "Home to the Statue of Unity (tallest in the world) and Gir National Park."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [76.7794, 30.7333]
},
"properties": {
"name": "Haryana",
"capital": "Chandigarh",
"speciality": "Agricultural Powerhouse & Sports",
"language": "Hindi",
"details": "A major contributor to India's grain production and Olympic athletes."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [77.1734, 31.1048]
},
"properties": {
"name": "Himachal Pradesh",
"capital": "Shimla",
"speciality": "Himalayan Landscapes & Apples",
"language": "Hindi",
"details": "A popular tourist destination for hill stations like Manali and Dharamshala."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [85.3096, 23.3441]
},
"properties": {
"name": "Jharkhand",
"capital": "Ranchi",
"speciality": "Land of Forests & Minerals",
"language": "Hindi",
"details": "Rich in mineral resources like coal and iron ore; famous for waterfalls."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [77.5946, 12.9716]
},
"properties": {
"name": "Karnataka",
"capital": "Bengaluru",
"speciality": "Silicon Valley of India & Hampi Ruins",
"language": "Kannada",
"details": "A hub for IT and biotechnology, also home to the ancient Vijayanagara empire ruins."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [76.9366, 8.5241]
},
"properties": {
"name": "Kerala",
"capital": "Thiruvananthapuram",
"speciality": "God's Own Country (Backwaters)",
"language": "Malayalam",
"details": "Famous for high literacy, Ayurveda, houseboats, and spice plantations."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [77.4126, 23.2599]
},
"properties": {
"name": "Madhya Pradesh",
"capital": "Bhopal",
"speciality": "Heart of India (Tiger State)",
"language": "Hindi",
"details": "Known for Khajuraho temples, Sanchi Stupa, and having the highest tiger population."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [72.8777, 19.0760]
},
"properties": {
"name": "Maharashtra",
"capital": "Mumbai",
"speciality": "Financial Hub & Bollywood",
"language": "Marathi",
"details": "Home to the Gateway of India, Ajanta & Ellora caves, and India's stock exchange."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [93.9368, 24.8170]
},
"properties": {
"name": "Manipur",
"capital": "Imphal",
"speciality": "Jewel of India (Loktak Lake)",
"language": "Meitei (Manipuri)",
"details": "Famous for the floating Keibul Lamjao National Park and Manipuri classical dance."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [91.8933, 25.5788]
},
"properties": {
"name": "Meghalaya",
"capital": "Shillong",
"speciality": "Abode of Clouds & Living Root Bridges",
"language": "English, Khasi, Garo",
"details": "Contains Cherrapunji and Mawsynram, the wettest places on Earth."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [92.7176, 23.7271]
},
"properties": {
"name": "Mizoram",
"capital": "Aizawl",
"speciality": "Land of Blue Mountains",
"language": "Mizo, English",
"details": "Known for its bamboo forests and the vast Chapchar Kut festival."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [94.1086, 25.6751]
},
"properties": {
"name": "Nagaland",
"capital": "Kohima",
"speciality": "Land of Festivals (Hornbill)",
"language": "English",
"details": "Famous for its unique tribal culture, rich traditions, and the Hornbill Festival."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [85.8245, 20.2961]
},
"properties": {
"name": "Odisha",
"capital": "Bhubaneswar",
"speciality": "Temples & Classical Dance (Odissi)",
"language": "Odia",
"details": "Home to the Jagannath Temple (Puri) and the Konark Sun Temple."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [75.3412, 31.1471]
},
"properties": {
"name": "Punjab",
"capital": "Chandigarh",
"speciality": "Land of Five Rivers & Golden Temple",
"language": "Punjabi",
"details": "Famous for the Golden Temple in Amritsar, Bhangra dance, and wheat production."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [75.7873, 26.9124]
},
"properties": {
"name": "Rajasthan",
"capital": "Jaipur",
"speciality": "Land of Kings (Forts & Palaces)",
"language": "Hindi, Rajasthani",
"details": "Famous for the Thar Desert, Jaipur (Pink City), and Udaipur (City of Lakes)."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [88.6138, 27.3314]
},
"properties": {
"name": "Sikkim",
"capital": "Gangtok",
"speciality": "Organic State & Kangchenjunga",
"language": "Nepali, English",
"details": "India's first fully organic state; home to the third highest mountain in the world."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [80.2707, 13.0827]
},
"properties": {
"name": "Tamil Nadu",
"capital": "Chennai",
"speciality": "Land of Temples & Classical Culture",
"language": "Tamil",
"details": "Known for Dravidian architecture, Bharatanatyam dance, and the automobile industry."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [78.4867, 17.3850]
},
"properties": {
"name": "Telangana",
"capital": "Hyderabad",
"speciality": "IT Hub & Biryani",
"language": "Telugu",
"details": "Famous for Charminar, Golconda Fort, and the Ramoji Film City."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [91.2868, 23.8315]
},
"properties": {
"name": "Tripura",
"capital": "Agartala",
"speciality": "Palaces & Bamboo Crafts",
"language": "Bengali, Kokborok",
"details": "Known for the Ujjayanta Palace and Neermahal (Water Palace)."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [80.9462, 26.8467]
},
"properties": {
"name": "Uttar Pradesh",
"capital": "Lucknow",
"speciality": "Taj Mahal & Spiritual Centers",
"language": "Hindi",
"details": "Most populous state; home to the Taj Mahal (Agra) and Varanasi (spiritual capital)."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [78.0322, 30.3165]
},
"properties": {
"name": "Uttarakhand",
"capital": "Dehradun",
"speciality": "Land of Gods (Devbhoomi)",
"language": "Hindi, Sanskrit",
"details": "Famous for the Himalayas, Yoga (Rishikesh), and the Ganges river origin."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [88.3639, 22.5726]
},
"properties": {
"name": "West Bengal",
"capital": "Kolkata",
"speciality": "Cultural Capital & Sundarbans",
"language": "Bengali",
"details": "Known for Durga Puja, literature, and the Royal Bengal Tigers in Sundarbans."
}
},
// --- UNION TERRITORIES ---
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [92.7265, 11.6234]
},
"properties": {
"name": "Andaman and Nicobar Islands",
"capital": "Port Blair",
"speciality": "Emerald Islands",
"language": "Hindi, English",
"details": "Remote archipelago known for pristine beaches and Cellular Jail."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [76.7794, 30.7333]
},
"properties": {
"name": "Chandigarh",
"capital": "Chandigarh",
"speciality": "The City Beautiful",
"language": "English, Hindi, Punjabi",
"details": "The first planned city of independent India; capital of both Punjab and Haryana."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [72.9668, 20.2763]
},
"properties": {
"name": "Dadra & Nagar Haveli and Daman & Diu",
"capital": "Daman",
"speciality": "Portuguese History & Tribal Culture",
"language": "Gujarati, Hindi",
"details": "Known for colonial forts, beaches, and scenic beauty."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [77.2090, 28.6139]
},
"properties": {
"name": "Delhi",
"capital": "New Delhi",
"speciality": "Capital of India",
"language": "Hindi, English",
"details": "The political center of India; home to the Red Fort, Qutub Minar, and India Gate."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [74.7973, 34.0837]
},
"properties": {
"name": "Jammu and Kashmir",
"capital": "Srinagar (Summer) / Jammu (Winter)",
"speciality": "Paradise on Earth",
"language": "Kashmiri, Dogri, Urdu",
"details": "Renowned for Dal Lake, houseboats, and Mughal Gardens."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [77.5771, 34.1526]
},
"properties": {
"name": "Ladakh",
"capital": "Leh",
"speciality": "Land of High Passes",
"language": "Ladakhi, Hindi",
"details": "Famous for its stark mountain landscapes, monasteries, and Pangong Lake."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [72.6420, 10.5667]
},
"properties": {
"name": "Lakshadweep",
"capital": "Kavaratti",
"speciality": "Coral Paradise",
"language": "Malayalam",
"details": "India's smallest Union Territory, known for its exotic coral reefs."
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [79.8145, 11.9416]
},
"properties": {
"name": "Puducherry",
"capital": "Puducherry",
"speciality": "French Riviera of the East",
"language": "Tamil, French, English",
"details": "Known for its French colonial architecture and the Auroville experimental township."
}
}
];