-
Notifications
You must be signed in to change notification settings - Fork 0
/
taiwanAdministrativeRegion.json
1913 lines (1913 loc) · 82.3 KB
/
taiwanAdministrativeRegion.json
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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"source": [
{
"name": "3碼郵遞區號與行政區中心點經緯度對照表",
"info": "https://data.gov.tw/dataset/25489",
"url": "https://www.post.gov.tw/post/download/1050812_行政區經緯度(toPost).xml"
}
],
"buildTime": "2022-11-05 17:31:47.106",
"data": {
"臺北市": {
"中正區": {
"latitude": 25.03240487,
"longitude": 121.5198839,
"googleMap": "https://www.google.com.tw/maps/@25.03240487,121.5198839,16z?hl=zh-TW"
},
"大同區": {
"latitude": 25.06342433,
"longitude": 121.5130417,
"googleMap": "https://www.google.com.tw/maps/@25.06342433,121.5130417,16z?hl=zh-TW"
},
"中山區": {
"latitude": 25.06969917,
"longitude": 121.5381597,
"googleMap": "https://www.google.com.tw/maps/@25.06969917,121.5381597,16z?hl=zh-TW"
},
"松山區": {
"latitude": 25.05999101,
"longitude": 121.5575876,
"googleMap": "https://www.google.com.tw/maps/@25.05999101,121.5575876,16z?hl=zh-TW"
},
"大安區": {
"latitude": 25.02677012,
"longitude": 121.5434446,
"googleMap": "https://www.google.com.tw/maps/@25.02677012,121.5434446,16z?hl=zh-TW"
},
"萬華區": {
"latitude": 25.0285899,
"longitude": 121.4979858,
"googleMap": "https://www.google.com.tw/maps/@25.0285899,121.4979858,16z?hl=zh-TW"
},
"信義區": {
"latitude": 25.03062083,
"longitude": 121.5716697,
"googleMap": "https://www.google.com.tw/maps/@25.03062083,121.5716697,16z?hl=zh-TW"
},
"士林區": {
"latitude": 25.12546704,
"longitude": 121.5508473,
"googleMap": "https://www.google.com.tw/maps/@25.12546704,121.5508473,16z?hl=zh-TW"
},
"北投區": {
"latitude": 25.1480682,
"longitude": 121.5177992,
"googleMap": "https://www.google.com.tw/maps/@25.1480682,121.5177992,16z?hl=zh-TW"
},
"內湖區": {
"latitude": 25.08370623,
"longitude": 121.5923828,
"googleMap": "https://www.google.com.tw/maps/@25.08370623,121.5923828,16z?hl=zh-TW"
},
"南港區": {
"latitude": 25.03600934,
"longitude": 121.6097573,
"googleMap": "https://www.google.com.tw/maps/@25.03600934,121.6097573,16z?hl=zh-TW"
},
"文山區": {
"latitude": 24.98857934,
"longitude": 121.5736082,
"googleMap": "https://www.google.com.tw/maps/@24.98857934,121.5736082,16z?hl=zh-TW"
}
},
"基隆市": {
"仁愛區": {
"latitude": 25.11945421,
"longitude": 121.7434205,
"googleMap": "https://www.google.com.tw/maps/@25.11945421,121.7434205,16z?hl=zh-TW"
},
"信義區": {
"latitude": 25.12576579,
"longitude": 121.772646,
"googleMap": "https://www.google.com.tw/maps/@25.12576579,121.772646,16z?hl=zh-TW"
},
"中正區": {
"latitude": 25.14365754,
"longitude": 121.7783549,
"googleMap": "https://www.google.com.tw/maps/@25.14365754,121.7783549,16z?hl=zh-TW"
},
"中山區": {
"latitude": 25.14986365,
"longitude": 121.7308913,
"googleMap": "https://www.google.com.tw/maps/@25.14986365,121.7308913,16z?hl=zh-TW"
},
"安樂區": {
"latitude": 25.14139521,
"longitude": 121.7078325,
"googleMap": "https://www.google.com.tw/maps/@25.14139521,121.7078325,16z?hl=zh-TW"
},
"暖暖區": {
"latitude": 25.08097003,
"longitude": 121.7447344,
"googleMap": "https://www.google.com.tw/maps/@25.08097003,121.7447344,16z?hl=zh-TW"
},
"七堵區": {
"latitude": 25.10962028,
"longitude": 121.683628,
"googleMap": "https://www.google.com.tw/maps/@25.10962028,121.683628,16z?hl=zh-TW"
}
},
"新北市": {
"萬里區": {
"latitude": 25.17572457,
"longitude": 121.6439307,
"googleMap": "https://www.google.com.tw/maps/@25.17572457,121.6439307,16z?hl=zh-TW"
},
"金山區": {
"latitude": 25.21714594,
"longitude": 121.6052639,
"googleMap": "https://www.google.com.tw/maps/@25.21714594,121.6052639,16z?hl=zh-TW"
},
"板橋區": {
"latitude": 25.01186453,
"longitude": 121.4579675,
"googleMap": "https://www.google.com.tw/maps/@25.01186453,121.4579675,16z?hl=zh-TW"
},
"汐止區": {
"latitude": 25.07331322,
"longitude": 121.6546992,
"googleMap": "https://www.google.com.tw/maps/@25.07331322,121.6546992,16z?hl=zh-TW"
},
"深坑區": {
"latitude": 24.99767506,
"longitude": 121.6200624,
"googleMap": "https://www.google.com.tw/maps/@24.99767506,121.6200624,16z?hl=zh-TW"
},
"石碇區": {
"latitude": 24.94714107,
"longitude": 121.6472277,
"googleMap": "https://www.google.com.tw/maps/@24.94714107,121.6472277,16z?hl=zh-TW"
},
"瑞芳區": {
"latitude": 25.0981293,
"longitude": 121.8232018,
"googleMap": "https://www.google.com.tw/maps/@25.0981293,121.8232018,16z?hl=zh-TW"
},
"平溪區": {
"latitude": 25.02607068,
"longitude": 121.7578817,
"googleMap": "https://www.google.com.tw/maps/@25.02607068,121.7578817,16z?hl=zh-TW"
},
"雙溪區": {
"latitude": 24.99698394,
"longitude": 121.8329822,
"googleMap": "https://www.google.com.tw/maps/@24.99698394,121.8329822,16z?hl=zh-TW"
},
"貢寮區": {
"latitude": 25.02485641,
"longitude": 121.9182466,
"googleMap": "https://www.google.com.tw/maps/@25.02485641,121.9182466,16z?hl=zh-TW"
},
"新店區": {
"latitude": 24.93039008,
"longitude": 121.5316565,
"googleMap": "https://www.google.com.tw/maps/@24.93039008,121.5316565,16z?hl=zh-TW"
},
"坪林區": {
"latitude": 24.91097073,
"longitude": 121.724223,
"googleMap": "https://www.google.com.tw/maps/@24.91097073,121.724223,16z?hl=zh-TW"
},
"烏來區": {
"latitude": 24.78824295,
"longitude": 121.5414806,
"googleMap": "https://www.google.com.tw/maps/@24.78824295,121.5414806,16z?hl=zh-TW"
},
"永和區": {
"latitude": 25.00810199,
"longitude": 121.516745,
"googleMap": "https://www.google.com.tw/maps/@25.00810199,121.516745,16z?hl=zh-TW"
},
"中和區": {
"latitude": 24.99088039,
"longitude": 121.4936744,
"googleMap": "https://www.google.com.tw/maps/@24.99088039,121.4936744,16z?hl=zh-TW"
},
"土城區": {
"latitude": 24.96425102,
"longitude": 121.445737,
"googleMap": "https://www.google.com.tw/maps/@24.96425102,121.445737,16z?hl=zh-TW"
},
"三峽區": {
"latitude": 24.88209766,
"longitude": 121.4163094,
"googleMap": "https://www.google.com.tw/maps/@24.88209766,121.4163094,16z?hl=zh-TW"
},
"樹林區": {
"latitude": 24.97970609,
"longitude": 121.401034,
"googleMap": "https://www.google.com.tw/maps/@24.97970609,121.401034,16z?hl=zh-TW"
},
"鶯歌區": {
"latitude": 24.9566258,
"longitude": 121.3466269,
"googleMap": "https://www.google.com.tw/maps/@24.9566258,121.3466269,16z?hl=zh-TW"
},
"三重區": {
"latitude": 25.06281651,
"longitude": 121.4870977,
"googleMap": "https://www.google.com.tw/maps/@25.06281651,121.4870977,16z?hl=zh-TW"
},
"新莊區": {
"latitude": 25.0358303,
"longitude": 121.4367535,
"googleMap": "https://www.google.com.tw/maps/@25.0358303,121.4367535,16z?hl=zh-TW"
},
"泰山區": {
"latitude": 25.05549774,
"longitude": 121.4162785,
"googleMap": "https://www.google.com.tw/maps/@25.05549774,121.4162785,16z?hl=zh-TW"
},
"林口區": {
"latitude": 25.1000868,
"longitude": 121.3527235,
"googleMap": "https://www.google.com.tw/maps/@25.1000868,121.3527235,16z?hl=zh-TW"
},
"蘆洲區": {
"latitude": 25.08927173,
"longitude": 121.4712461,
"googleMap": "https://www.google.com.tw/maps/@25.08927173,121.4712461,16z?hl=zh-TW"
},
"五股區": {
"latitude": 25.09614746,
"longitude": 121.4332139,
"googleMap": "https://www.google.com.tw/maps/@25.09614746,121.4332139,16z?hl=zh-TW"
},
"八里區": {
"latitude": 25.13812763,
"longitude": 121.4138359,
"googleMap": "https://www.google.com.tw/maps/@25.13812763,121.4138359,16z?hl=zh-TW"
},
"淡水區": {
"latitude": 25.18907636,
"longitude": 121.463904,
"googleMap": "https://www.google.com.tw/maps/@25.18907636,121.463904,16z?hl=zh-TW"
},
"三芝區": {
"latitude": 25.23159891,
"longitude": 121.515558,
"googleMap": "https://www.google.com.tw/maps/@25.23159891,121.515558,16z?hl=zh-TW"
},
"石門區": {
"latitude": 25.26518079,
"longitude": 121.5692761,
"googleMap": "https://www.google.com.tw/maps/@25.26518079,121.5692761,16z?hl=zh-TW"
}
},
"連江縣": {
"南竿鄉": {
"latitude": 26.154321,
"longitude": 119.931128,
"googleMap": "https://www.google.com.tw/maps/@26.154321,119.931128,16z?hl=zh-TW"
},
"北竿鄉": {
"latitude": 26.225637,
"longitude": 119.994251,
"googleMap": "https://www.google.com.tw/maps/@26.225637,119.994251,16z?hl=zh-TW"
},
"莒光鄉": {
"latitude": 25.97298,
"longitude": 119.938877,
"googleMap": "https://www.google.com.tw/maps/@25.97298,119.938877,16z?hl=zh-TW"
},
"東引鄉": {
"latitude": 26.366101,
"longitude": 120.4903,
"googleMap": "https://www.google.com.tw/maps/@26.366101,120.4903,16z?hl=zh-TW"
}
},
"宜蘭縣": {
"宜蘭市": {
"latitude": 24.75021184,
"longitude": 121.7569358,
"googleMap": "https://www.google.com.tw/maps/@24.75021184,121.7569358,16z?hl=zh-TW"
},
"頭城鎮": {
"latitude": 24.90075882,
"longitude": 121.845797,
"googleMap": "https://www.google.com.tw/maps/@24.90075882,121.845797,16z?hl=zh-TW"
},
"礁溪鄉": {
"latitude": 24.81144192,
"longitude": 121.7346606,
"googleMap": "https://www.google.com.tw/maps/@24.81144192,121.7346606,16z?hl=zh-TW"
},
"壯圍鄉": {
"latitude": 24.75183042,
"longitude": 121.8017622,
"googleMap": "https://www.google.com.tw/maps/@24.75183042,121.8017622,16z?hl=zh-TW"
},
"員山鄉": {
"latitude": 24.74199237,
"longitude": 121.6612282,
"googleMap": "https://www.google.com.tw/maps/@24.74199237,121.6612282,16z?hl=zh-TW"
},
"羅東鎮": {
"latitude": 24.67884824,
"longitude": 121.7701782,
"googleMap": "https://www.google.com.tw/maps/@24.67884824,121.7701782,16z?hl=zh-TW"
},
"三星鄉": {
"latitude": 24.66771972,
"longitude": 121.6642714,
"googleMap": "https://www.google.com.tw/maps/@24.66771972,121.6642714,16z?hl=zh-TW"
},
"大同鄉": {
"latitude": 24.55152082,
"longitude": 121.5040369,
"googleMap": "https://www.google.com.tw/maps/@24.55152082,121.5040369,16z?hl=zh-TW"
},
"五結鄉": {
"latitude": 24.68887343,
"longitude": 121.8058342,
"googleMap": "https://www.google.com.tw/maps/@24.68887343,121.8058342,16z?hl=zh-TW"
},
"冬山鄉": {
"latitude": 24.64214986,
"longitude": 121.760255,
"googleMap": "https://www.google.com.tw/maps/@24.64214986,121.760255,16z?hl=zh-TW"
},
"蘇澳鎮": {
"latitude": 24.55467058,
"longitude": 121.8346892,
"googleMap": "https://www.google.com.tw/maps/@24.55467058,121.8346892,16z?hl=zh-TW"
},
"南澳鄉": {
"latitude": 24.44864058,
"longitude": 121.6560593,
"googleMap": "https://www.google.com.tw/maps/@24.44864058,121.6560593,16z?hl=zh-TW"
},
"釣魚臺列嶼": {
"latitude": 25.746396,
"longitude": 123.475482,
"googleMap": "https://www.google.com.tw/maps/@25.746396,123.475482,16z?hl=zh-TW"
}
},
"新竹市": {
"北區": {
"latitude": 24.82269542,
"longitude": 120.9491233,
"googleMap": "https://www.google.com.tw/maps/@24.82269542,120.9491233,16z?hl=zh-TW"
},
"東區": {
"latitude": 24.79028174,
"longitude": 120.9927505,
"googleMap": "https://www.google.com.tw/maps/@24.79028174,120.9927505,16z?hl=zh-TW"
},
"香山區": {
"latitude": 24.77104342,
"longitude": 120.9236727,
"googleMap": "https://www.google.com.tw/maps/@24.77104342,120.9236727,16z?hl=zh-TW"
}
},
"新竹縣": {
"竹北市": {
"latitude": 24.83816209,
"longitude": 120.9948704,
"googleMap": "https://www.google.com.tw/maps/@24.83816209,120.9948704,16z?hl=zh-TW"
},
"湖口鄉": {
"latitude": 24.88566341,
"longitude": 121.0517242,
"googleMap": "https://www.google.com.tw/maps/@24.88566341,121.0517242,16z?hl=zh-TW"
},
"新豐鄉": {
"latitude": 24.90731298,
"longitude": 120.9956033,
"googleMap": "https://www.google.com.tw/maps/@24.90731298,120.9956033,16z?hl=zh-TW"
},
"新埔鎮": {
"latitude": 24.84133959,
"longitude": 121.0939886,
"googleMap": "https://www.google.com.tw/maps/@24.84133959,121.0939886,16z?hl=zh-TW"
},
"關西鎮": {
"latitude": 24.78514681,
"longitude": 121.1866221,
"googleMap": "https://www.google.com.tw/maps/@24.78514681,121.1866221,16z?hl=zh-TW"
},
"芎林鄉": {
"latitude": 24.7657116,
"longitude": 121.1046394,
"googleMap": "https://www.google.com.tw/maps/@24.7657116,121.1046394,16z?hl=zh-TW"
},
"寶山鄉": {
"latitude": 24.73697351,
"longitude": 120.9991605,
"googleMap": "https://www.google.com.tw/maps/@24.73697351,120.9991605,16z?hl=zh-TW"
},
"竹東鎮": {
"latitude": 24.73075802,
"longitude": 121.0753632,
"googleMap": "https://www.google.com.tw/maps/@24.73075802,121.0753632,16z?hl=zh-TW"
},
"五峰鄉": {
"latitude": 24.578054,
"longitude": 121.1389495,
"googleMap": "https://www.google.com.tw/maps/@24.578054,121.1389495,16z?hl=zh-TW"
},
"橫山鄉": {
"latitude": 24.7078092,
"longitude": 121.1469732,
"googleMap": "https://www.google.com.tw/maps/@24.7078092,121.1469732,16z?hl=zh-TW"
},
"尖石鄉": {
"latitude": 24.59493235,
"longitude": 121.2819341,
"googleMap": "https://www.google.com.tw/maps/@24.59493235,121.2819341,16z?hl=zh-TW"
},
"北埔鄉": {
"latitude": 24.67207405,
"longitude": 121.0642745,
"googleMap": "https://www.google.com.tw/maps/@24.67207405,121.0642745,16z?hl=zh-TW"
},
"峨眉鄉": {
"latitude": 24.67811197,
"longitude": 121.0110809,
"googleMap": "https://www.google.com.tw/maps/@24.67811197,121.0110809,16z?hl=zh-TW"
}
},
"桃園市": {
"中壢區": {
"latitude": 24.97993803,
"longitude": 121.2147243,
"googleMap": "https://www.google.com.tw/maps/@24.97993803,121.2147243,16z?hl=zh-TW"
},
"平鎮區": {
"latitude": 24.92117923,
"longitude": 121.2140051,
"googleMap": "https://www.google.com.tw/maps/@24.92117923,121.2140051,16z?hl=zh-TW"
},
"龍潭區": {
"latitude": 24.85064954,
"longitude": 121.2117877,
"googleMap": "https://www.google.com.tw/maps/@24.85064954,121.2117877,16z?hl=zh-TW"
},
"楊梅區": {
"latitude": 24.91820989,
"longitude": 121.1291697,
"googleMap": "https://www.google.com.tw/maps/@24.91820989,121.1291697,16z?hl=zh-TW"
},
"新屋區": {
"latitude": 24.97280352,
"longitude": 121.067758,
"googleMap": "https://www.google.com.tw/maps/@24.97280352,121.067758,16z?hl=zh-TW"
},
"觀音區": {
"latitude": 25.02671611,
"longitude": 121.1155021,
"googleMap": "https://www.google.com.tw/maps/@25.02671611,121.1155021,16z?hl=zh-TW"
},
"桃園區": {
"latitude": 25.00040024,
"longitude": 121.2996612,
"googleMap": "https://www.google.com.tw/maps/@25.00040024,121.2996612,16z?hl=zh-TW"
},
"龜山區": {
"latitude": 25.02417472,
"longitude": 121.3569265,
"googleMap": "https://www.google.com.tw/maps/@25.02417472,121.3569265,16z?hl=zh-TW"
},
"八德區": {
"latitude": 24.94968903,
"longitude": 121.2913102,
"googleMap": "https://www.google.com.tw/maps/@24.94968903,121.2913102,16z?hl=zh-TW"
},
"大溪區": {
"latitude": 24.86797026,
"longitude": 121.296342,
"googleMap": "https://www.google.com.tw/maps/@24.86797026,121.296342,16z?hl=zh-TW"
},
"復興區": {
"latitude": 24.72949884,
"longitude": 121.3754588,
"googleMap": "https://www.google.com.tw/maps/@24.72949884,121.3754588,16z?hl=zh-TW"
},
"大園區": {
"latitude": 25.06384709,
"longitude": 121.21177,
"googleMap": "https://www.google.com.tw/maps/@25.06384709,121.21177,16z?hl=zh-TW"
},
"蘆竹區": {
"latitude": 25.06073337,
"longitude": 121.2831266,
"googleMap": "https://www.google.com.tw/maps/@25.06073337,121.2831266,16z?hl=zh-TW"
}
},
"苗栗縣": {
"竹南鎮": {
"latitude": 24.69862459,
"longitude": 120.8777316,
"googleMap": "https://www.google.com.tw/maps/@24.69862459,120.8777316,16z?hl=zh-TW"
},
"頭份市": {
"latitude": 24.67628243,
"longitude": 120.9189437,
"googleMap": "https://www.google.com.tw/maps/@24.67628243,120.9189437,16z?hl=zh-TW"
},
"三灣鄉": {
"latitude": 24.63599405,
"longitude": 120.9525745,
"googleMap": "https://www.google.com.tw/maps/@24.63599405,120.9525745,16z?hl=zh-TW"
},
"南庄鄉": {
"latitude": 24.56608432,
"longitude": 121.017471,
"googleMap": "https://www.google.com.tw/maps/@24.56608432,121.017471,16z?hl=zh-TW"
},
"獅潭鄉": {
"latitude": 24.51978614,
"longitude": 120.9206688,
"googleMap": "https://www.google.com.tw/maps/@24.51978614,120.9206688,16z?hl=zh-TW"
},
"後龍鎮": {
"latitude": 24.6156265,
"longitude": 120.781205,
"googleMap": "https://www.google.com.tw/maps/@24.6156265,120.781205,16z?hl=zh-TW"
},
"通霄鎮": {
"latitude": 24.4850464,
"longitude": 120.7146378,
"googleMap": "https://www.google.com.tw/maps/@24.4850464,120.7146378,16z?hl=zh-TW"
},
"苑裡鎮": {
"latitude": 24.4110232,
"longitude": 120.6882195,
"googleMap": "https://www.google.com.tw/maps/@24.4110232,120.6882195,16z?hl=zh-TW"
},
"苗栗市": {
"latitude": 24.56382141,
"longitude": 120.8112299,
"googleMap": "https://www.google.com.tw/maps/@24.56382141,120.8112299,16z?hl=zh-TW"
},
"造橋鄉": {
"latitude": 24.62481314,
"longitude": 120.8695663,
"googleMap": "https://www.google.com.tw/maps/@24.62481314,120.8695663,16z?hl=zh-TW"
},
"頭屋鄉": {
"latitude": 24.57345497,
"longitude": 120.8826631,
"googleMap": "https://www.google.com.tw/maps/@24.57345497,120.8826631,16z?hl=zh-TW"
},
"公館鄉": {
"latitude": 24.50249686,
"longitude": 120.8505904,
"googleMap": "https://www.google.com.tw/maps/@24.50249686,120.8505904,16z?hl=zh-TW"
},
"大湖鄉": {
"latitude": 24.39359641,
"longitude": 120.8631192,
"googleMap": "https://www.google.com.tw/maps/@24.39359641,120.8631192,16z?hl=zh-TW"
},
"泰安鄉": {
"latitude": 24.41925819,
"longitude": 121.0681571,
"googleMap": "https://www.google.com.tw/maps/@24.41925819,121.0681571,16z?hl=zh-TW"
},
"銅鑼鄉": {
"latitude": 24.45591832,
"longitude": 120.7992043,
"googleMap": "https://www.google.com.tw/maps/@24.45591832,120.7992043,16z?hl=zh-TW"
},
"三義鄉": {
"latitude": 24.38081659,
"longitude": 120.7701929,
"googleMap": "https://www.google.com.tw/maps/@24.38081659,120.7701929,16z?hl=zh-TW"
},
"西湖鄉": {
"latitude": 24.54153218,
"longitude": 120.7614144,
"googleMap": "https://www.google.com.tw/maps/@24.54153218,120.7614144,16z?hl=zh-TW"
},
"卓蘭鎮": {
"latitude": 24.32510167,
"longitude": 120.8561966,
"googleMap": "https://www.google.com.tw/maps/@24.32510167,120.8561966,16z?hl=zh-TW"
}
},
"臺中市": {
"中區": {
"latitude": 24.14168566,
"longitude": 120.680598,
"googleMap": "https://www.google.com.tw/maps/@24.14168566,120.680598,16z?hl=zh-TW"
},
"東區": {
"latitude": 24.13733209,
"longitude": 120.6970865,
"googleMap": "https://www.google.com.tw/maps/@24.13733209,120.6970865,16z?hl=zh-TW"
},
"南區": {
"latitude": 24.12114107,
"longitude": 120.6646178,
"googleMap": "https://www.google.com.tw/maps/@24.12114107,120.6646178,16z?hl=zh-TW"
},
"西區": {
"latitude": 24.14391082,
"longitude": 120.6647579,
"googleMap": "https://www.google.com.tw/maps/@24.14391082,120.6647579,16z?hl=zh-TW"
},
"北區": {
"latitude": 24.15863985,
"longitude": 120.6809521,
"googleMap": "https://www.google.com.tw/maps/@24.15863985,120.6809521,16z?hl=zh-TW"
},
"北屯區": {
"latitude": 24.18400298,
"longitude": 120.7362319,
"googleMap": "https://www.google.com.tw/maps/@24.18400298,120.7362319,16z?hl=zh-TW"
},
"西屯區": {
"latitude": 24.18308895,
"longitude": 120.6270131,
"googleMap": "https://www.google.com.tw/maps/@24.18308895,120.6270131,16z?hl=zh-TW"
},
"南屯區": {
"latitude": 24.14165524,
"longitude": 120.6177379,
"googleMap": "https://www.google.com.tw/maps/@24.14165524,120.6177379,16z?hl=zh-TW"
},
"太平區": {
"latitude": 24.11477375,
"longitude": 120.7734217,
"googleMap": "https://www.google.com.tw/maps/@24.11477375,120.7734217,16z?hl=zh-TW"
},
"大里區": {
"latitude": 24.09575742,
"longitude": 120.6926261,
"googleMap": "https://www.google.com.tw/maps/@24.09575742,120.6926261,16z?hl=zh-TW"
},
"霧峰區": {
"latitude": 24.04332785,
"longitude": 120.7201989,
"googleMap": "https://www.google.com.tw/maps/@24.04332785,120.7201989,16z?hl=zh-TW"
},
"烏日區": {
"latitude": 24.0839271,
"longitude": 120.6293305,
"googleMap": "https://www.google.com.tw/maps/@24.0839271,120.6293305,16z?hl=zh-TW"
},
"豐原區": {
"latitude": 24.24990298,
"longitude": 120.7375715,
"googleMap": "https://www.google.com.tw/maps/@24.24990298,120.7375715,16z?hl=zh-TW"
},
"后里區": {
"latitude": 24.30962483,
"longitude": 120.7146127,
"googleMap": "https://www.google.com.tw/maps/@24.30962483,120.7146127,16z?hl=zh-TW"
},
"石岡區": {
"latitude": 24.26493299,
"longitude": 120.7903822,
"googleMap": "https://www.google.com.tw/maps/@24.26493299,120.7903822,16z?hl=zh-TW"
},
"東勢區": {
"latitude": 24.24952637,
"longitude": 120.8401401,
"googleMap": "https://www.google.com.tw/maps/@24.24952637,120.8401401,16z?hl=zh-TW"
},
"和平區": {
"latitude": 24.27620277,
"longitude": 121.140185,
"googleMap": "https://www.google.com.tw/maps/@24.27620277,121.140185,16z?hl=zh-TW"
},
"新社區": {
"latitude": 24.17769289,
"longitude": 120.8313228,
"googleMap": "https://www.google.com.tw/maps/@24.17769289,120.8313228,16z?hl=zh-TW"
},
"潭子區": {
"latitude": 24.21171121,
"longitude": 120.710997,
"googleMap": "https://www.google.com.tw/maps/@24.21171121,120.710997,16z?hl=zh-TW"
},
"大雅區": {
"latitude": 24.22704181,
"longitude": 120.6411818,
"googleMap": "https://www.google.com.tw/maps/@24.22704181,120.6411818,16z?hl=zh-TW"
},
"神岡區": {
"latitude": 24.26568008,
"longitude": 120.6733321,
"googleMap": "https://www.google.com.tw/maps/@24.26568008,120.6733321,16z?hl=zh-TW"
},
"大肚區": {
"latitude": 24.14467504,
"longitude": 120.5543243,
"googleMap": "https://www.google.com.tw/maps/@24.14467504,120.5543243,16z?hl=zh-TW"
},
"沙鹿區": {
"latitude": 24.23425212,
"longitude": 120.5838628,
"googleMap": "https://www.google.com.tw/maps/@24.23425212,120.5838628,16z?hl=zh-TW"
},
"龍井區": {
"latitude": 24.20062892,
"longitude": 120.5283728,
"googleMap": "https://www.google.com.tw/maps/@24.20062892,120.5283728,16z?hl=zh-TW"
},
"梧棲區": {
"latitude": 24.24552431,
"longitude": 120.5301259,
"googleMap": "https://www.google.com.tw/maps/@24.24552431,120.5301259,16z?hl=zh-TW"
},
"清水區": {
"latitude": 24.29205743,
"longitude": 120.5809094,
"googleMap": "https://www.google.com.tw/maps/@24.29205743,120.5809094,16z?hl=zh-TW"
},
"大甲區": {
"latitude": 24.37827161,
"longitude": 120.6357901,
"googleMap": "https://www.google.com.tw/maps/@24.37827161,120.6357901,16z?hl=zh-TW"
},
"外埔區": {
"latitude": 24.33551071,
"longitude": 120.6650639,
"googleMap": "https://www.google.com.tw/maps/@24.33551071,120.6650639,16z?hl=zh-TW"
},
"大安區": {
"latitude": 24.36509555,
"longitude": 120.5914407,
"googleMap": "https://www.google.com.tw/maps/@24.36509555,120.5914407,16z?hl=zh-TW"
}
},
"彰化縣": {
"彰化市": {
"latitude": 24.07532909,
"longitude": 120.5694208,
"googleMap": "https://www.google.com.tw/maps/@24.07532909,120.5694208,16z?hl=zh-TW"
},
"芬園鄉": {
"latitude": 24.00628794,
"longitude": 120.6294414,
"googleMap": "https://www.google.com.tw/maps/@24.00628794,120.6294414,16z?hl=zh-TW"
},
"花壇鄉": {
"latitude": 24.03006875,
"longitude": 120.5597655,
"googleMap": "https://www.google.com.tw/maps/@24.03006875,120.5597655,16z?hl=zh-TW"
},
"秀水鄉": {
"latitude": 24.03249405,
"longitude": 120.5041184,
"googleMap": "https://www.google.com.tw/maps/@24.03249405,120.5041184,16z?hl=zh-TW"
},
"鹿港鎮": {
"latitude": 24.08286685,
"longitude": 120.4385491,
"googleMap": "https://www.google.com.tw/maps/@24.08286685,120.4385491,16z?hl=zh-TW"
},
"福興鄉": {
"latitude": 24.03021674,
"longitude": 120.4310511,
"googleMap": "https://www.google.com.tw/maps/@24.03021674,120.4310511,16z?hl=zh-TW"
},
"線西鄉": {
"latitude": 24.13158127,
"longitude": 120.452157,
"googleMap": "https://www.google.com.tw/maps/@24.13158127,120.452157,16z?hl=zh-TW"
},
"和美鎮": {
"latitude": 24.11379535,
"longitude": 120.5112045,
"googleMap": "https://www.google.com.tw/maps/@24.11379535,120.5112045,16z?hl=zh-TW"
},
"伸港鄉": {
"latitude": 24.16367107,
"longitude": 120.486449,
"googleMap": "https://www.google.com.tw/maps/@24.16367107,120.486449,16z?hl=zh-TW"
},
"員林市": {
"latitude": 23.95650448,
"longitude": 120.593073,
"googleMap": "https://www.google.com.tw/maps/@23.95650448,120.593073,16z?hl=zh-TW"
},
"社頭鄉": {
"latitude": 23.90536413,
"longitude": 120.6021661,
"googleMap": "https://www.google.com.tw/maps/@23.90536413,120.6021661,16z?hl=zh-TW"
},
"永靖鄉": {
"latitude": 23.92139507,
"longitude": 120.5416032,
"googleMap": "https://www.google.com.tw/maps/@23.92139507,120.5416032,16z?hl=zh-TW"
},
"埔心鄉": {
"latitude": 23.95277521,
"longitude": 120.5342802,
"googleMap": "https://www.google.com.tw/maps/@23.95277521,120.5342802,16z?hl=zh-TW"
},
"溪湖鎮": {
"latitude": 23.95171456,
"longitude": 120.4831739,
"googleMap": "https://www.google.com.tw/maps/@23.95171456,120.4831739,16z?hl=zh-TW"
},
"大村鄉": {
"latitude": 23.99209206,
"longitude": 120.5586866,
"googleMap": "https://www.google.com.tw/maps/@23.99209206,120.5586866,16z?hl=zh-TW"
},
"埔鹽鄉": {
"latitude": 23.99204417,
"longitude": 120.4594626,
"googleMap": "https://www.google.com.tw/maps/@23.99204417,120.4594626,16z?hl=zh-TW"
},
"田中鎮": {
"latitude": 23.85723872,
"longitude": 120.5903471,
"googleMap": "https://www.google.com.tw/maps/@23.85723872,120.5903471,16z?hl=zh-TW"
},
"北斗鎮": {
"latitude": 23.867574,
"longitude": 120.5331566,
"googleMap": "https://www.google.com.tw/maps/@23.867574,120.5331566,16z?hl=zh-TW"
},
"田尾鄉": {
"latitude": 23.90056065,
"longitude": 120.5223244,
"googleMap": "https://www.google.com.tw/maps/@23.90056065,120.5223244,16z?hl=zh-TW"
},
"埤頭鄉": {
"latitude": 23.88234118,
"longitude": 120.4675642,
"googleMap": "https://www.google.com.tw/maps/@23.88234118,120.4675642,16z?hl=zh-TW"
},
"溪州鄉": {
"latitude": 23.82725185,
"longitude": 120.5224904,
"googleMap": "https://www.google.com.tw/maps/@23.82725185,120.5224904,16z?hl=zh-TW"
},
"竹塘鄉": {
"latitude": 23.8505872,
"longitude": 120.4136645,
"googleMap": "https://www.google.com.tw/maps/@23.8505872,120.4136645,16z?hl=zh-TW"
},
"二林鎮": {
"latitude": 23.91621405,
"longitude": 120.404225,
"googleMap": "https://www.google.com.tw/maps/@23.91621405,120.404225,16z?hl=zh-TW"
},
"大城鄉": {
"latitude": 23.85069276,
"longitude": 120.3113284,
"googleMap": "https://www.google.com.tw/maps/@23.85069276,120.3113284,16z?hl=zh-TW"
},
"芳苑鄉": {
"latitude": 23.9537906,
"longitude": 120.3539226,
"googleMap": "https://www.google.com.tw/maps/@23.9537906,120.3539226,16z?hl=zh-TW"
},
"二水鄉": {
"latitude": 23.8092402,
"longitude": 120.628589,
"googleMap": "https://www.google.com.tw/maps/@23.8092402,120.628589,16z?hl=zh-TW"
}
},
"南投縣": {
"南投市": {
"latitude": 23.92173537,
"longitude": 120.6787658,
"googleMap": "https://www.google.com.tw/maps/@23.92173537,120.6787658,16z?hl=zh-TW"
},
"中寮鄉": {
"latitude": 23.90589214,
"longitude": 120.7859159,
"googleMap": "https://www.google.com.tw/maps/@23.90589214,120.7859159,16z?hl=zh-TW"
},
"草屯鎮": {
"latitude": 23.98321081,
"longitude": 120.7326182,
"googleMap": "https://www.google.com.tw/maps/@23.98321081,120.7326182,16z?hl=zh-TW"
},
"國姓鄉": {
"latitude": 24.03135413,
"longitude": 120.8676052,
"googleMap": "https://www.google.com.tw/maps/@24.03135413,120.8676052,16z?hl=zh-TW"
},
"埔里鎮": {
"latitude": 23.97892591,
"longitude": 120.9625259,
"googleMap": "https://www.google.com.tw/maps/@23.97892591,120.9625259,16z?hl=zh-TW"
},
"仁愛鄉": {
"latitude": 24.02886513,
"longitude": 121.1443879,
"googleMap": "https://www.google.com.tw/maps/@24.02886513,121.1443879,16z?hl=zh-TW"
},
"名間鄉": {
"latitude": 23.8510771,
"longitude": 120.6774402,
"googleMap": "https://www.google.com.tw/maps/@23.8510771,120.6774402,16z?hl=zh-TW"
},
"集集鎮": {
"latitude": 23.83701687,
"longitude": 120.7854192,
"googleMap": "https://www.google.com.tw/maps/@23.83701687,120.7854192,16z?hl=zh-TW"
},
"水里鄉": {
"latitude": 23.79612907,
"longitude": 120.8622721,
"googleMap": "https://www.google.com.tw/maps/@23.79612907,120.8622721,16z?hl=zh-TW"
},
"魚池鄉": {
"latitude": 23.87601213,
"longitude": 120.9256736,
"googleMap": "https://www.google.com.tw/maps/@23.87601213,120.9256736,16z?hl=zh-TW"
},
"信義鄉": {
"latitude": 23.6554647,
"longitude": 121.0212867,
"googleMap": "https://www.google.com.tw/maps/@23.6554647,121.0212867,16z?hl=zh-TW"
},
"竹山鎮": {
"latitude": 23.69805518,
"longitude": 120.7100797,
"googleMap": "https://www.google.com.tw/maps/@23.69805518,120.7100797,16z?hl=zh-TW"
},
"鹿谷鄉": {
"latitude": 23.73776029,
"longitude": 120.7815065,
"googleMap": "https://www.google.com.tw/maps/@23.73776029,120.7815065,16z?hl=zh-TW"
}
},
"嘉義市": {
"西區": {
"latitude": 23.47915529,
"longitude": 120.4248724,
"googleMap": "https://www.google.com.tw/maps/@23.47915529,120.4248724,16z?hl=zh-TW"
},
"東區": {
"latitude": 23.48170334,
"longitude": 120.4706244,
"googleMap": "https://www.google.com.tw/maps/@23.48170334,120.4706244,16z?hl=zh-TW"
}
},
"嘉義縣": {
"番路鄉": {
"latitude": 23.42765669,
"longitude": 120.6075335,
"googleMap": "https://www.google.com.tw/maps/@23.42765669,120.6075335,16z?hl=zh-TW"
},
"梅山鄉": {
"latitude": 23.55535465,
"longitude": 120.6387459,
"googleMap": "https://www.google.com.tw/maps/@23.55535465,120.6387459,16z?hl=zh-TW"
},
"竹崎鄉": {
"latitude": 23.50376527,
"longitude": 120.5965771,
"googleMap": "https://www.google.com.tw/maps/@23.50376527,120.5965771,16z?hl=zh-TW"
},
"阿里山鄉": {
"latitude": 23.44077619,
"longitude": 120.7596173,
"googleMap": "https://www.google.com.tw/maps/@23.44077619,120.7596173,16z?hl=zh-TW"
},
"中埔鄉": {
"latitude": 23.40408998,
"longitude": 120.5365312,
"googleMap": "https://www.google.com.tw/maps/@23.40408998,120.5365312,16z?hl=zh-TW"
},
"大埔鄉": {
"latitude": 23.28848426,
"longitude": 120.5896466,
"googleMap": "https://www.google.com.tw/maps/@23.28848426,120.5896466,16z?hl=zh-TW"
},
"水上鄉": {
"latitude": 23.42911287,
"longitude": 120.4147357,
"googleMap": "https://www.google.com.tw/maps/@23.42911287,120.4147357,16z?hl=zh-TW"
},
"鹿草鄉": {
"latitude": 23.40811736,
"longitude": 120.3045468,
"googleMap": "https://www.google.com.tw/maps/@23.40811736,120.3045468,16z?hl=zh-TW"
},
"太保市": {
"latitude": 23.4729191,
"longitude": 120.3440009,
"googleMap": "https://www.google.com.tw/maps/@23.4729191,120.3440009,16z?hl=zh-TW"
},
"朴子市": {
"latitude": 23.44610605,
"longitude": 120.2538977,
"googleMap": "https://www.google.com.tw/maps/@23.44610605,120.2538977,16z?hl=zh-TW"
},
"東石鄉": {
"latitude": 23.46866059,
"longitude": 120.1738682,