-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.kml
More file actions
816 lines (816 loc) · 30.7 KB
/
input.kml
File metadata and controls
816 lines (816 loc) · 30.7 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
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>北海道</name>
<Style id="icon-1500-0288D1-nodesc-normal">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<Style id="icon-1500-0288D1-nodesc-highlight">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<StyleMap id="icon-1500-0288D1-nodesc">
<Pair>
<key>normal</key>
<styleUrl>#icon-1500-0288D1-nodesc-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1500-0288D1-nodesc-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-1577-0288D1-nodesc-normal">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<Style id="icon-1577-0288D1-nodesc-highlight">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<StyleMap id="icon-1577-0288D1-nodesc">
<Pair>
<key>normal</key>
<styleUrl>#icon-1577-0288D1-nodesc-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1577-0288D1-nodesc-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-1602-0288D1-normal">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-1602-0288D1-highlight">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-1602-0288D1">
<Pair>
<key>normal</key>
<styleUrl>#icon-1602-0288D1-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1602-0288D1-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-1640-0288D1-normal">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-1640-0288D1-highlight">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-1640-0288D1">
<Pair>
<key>normal</key>
<styleUrl>#icon-1640-0288D1-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1640-0288D1-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-1640-0288D1-nodesc-normal">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<Style id="icon-1640-0288D1-nodesc-highlight">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<StyleMap id="icon-1640-0288D1-nodesc">
<Pair>
<key>normal</key>
<styleUrl>#icon-1640-0288D1-nodesc-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1640-0288D1-nodesc-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-1899-0288D1-normal">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="32" xunits="pixels" y="64" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-1899-0288D1-highlight">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="32" xunits="pixels" y="64" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-1899-0288D1">
<Pair>
<key>normal</key>
<styleUrl>#icon-1899-0288D1-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1899-0288D1-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-1899-0288D1-nodesc-normal">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="32" xunits="pixels" y="64" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<Style id="icon-1899-0288D1-nodesc-highlight">
<IconStyle>
<color>ffd18802</color>
<scale>1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="32" xunits="pixels" y="64" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<StyleMap id="icon-1899-0288D1-nodesc">
<Pair>
<key>normal</key>
<styleUrl>#icon-1899-0288D1-nodesc-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-1899-0288D1-nodesc-highlight</styleUrl>
</Pair>
</StyleMap>
<Placemark>
<name>洞爺湖森林博物館</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
140.844209,42.595389,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>ザレイクビューTOYA乃の風リゾート</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
140.82226,42.565914,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>小樽市</name>
<styleUrl>#icon-1500-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
140.994662,43.190717,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Mt Hakodate函館山 百萬石夜景</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
140.704046,41.759188,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>知床五湖</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
145.081247,44.125983,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>知床岬</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
145.339884,44.320034,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>大沼 Lake Onuma</name>
<description><![CDATA[<img src="https://lh6.googleusercontent.com/proxy/kYrzGE1mIR_VCz2M3kHWU66P-gu8qseHn9J5FSJzx44U35o2HzMkckOdrvTWr6dE_mQKsvzG_MP-O3k74mSxt53jKpWLF5HPuYJPUUgYZex-zyEWlpGNrKXYiAitvNV2MsmVYLBpiUA0bp1nUCg10Ni6noxIjmb57ZoymQUX0nSHJe37L7Yo0JdL-2g7VaeGaAKCZZQUkOjD2HVIW68OvsgYONylaH0HR_XWXfbjJtF13xX61sIFPkvy" height="200" width="auto" /><br><br>]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh6.googleusercontent.com/proxy/kYrzGE1mIR_VCz2M3kHWU66P-gu8qseHn9J5FSJzx44U35o2HzMkckOdrvTWr6dE_mQKsvzG_MP-O3k74mSxt53jKpWLF5HPuYJPUUgYZex-zyEWlpGNrKXYiAitvNV2MsmVYLBpiUA0bp1nUCg10Ni6noxIjmb57ZoymQUX0nSHJe37L7Yo0JdL-2g7VaeGaAKCZZQUkOjD2HVIW68OvsgYONylaH0HR_XWXfbjJtF13xX61sIFPkvy</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
140.684342,41.997872,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>富良野市 (薰衣草)</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.383225,43.34214,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>屈斜路湖</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
144.325406,43.603842,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>旭川市旭山動物園</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.48008,43.768425,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>美瑛町</name>
<description><![CDATA[<img src="https://lh3.googleusercontent.com/proxy/dPMRme_854iZSMhImztf-fSxLuTTyAVTZrfmeBQa4fMbMxfE53l61xEGKG2Sx2hJif3gZzUPq0VedarWRd4prj6a-1K6s-kj55qm0G2iTAaHupVRqSKnlIDSz-KFvMv_1Dppg_3jVZubJ8hnJGMPxx2DIo6S6sy_QRc13PcLz8pePnSPOM6sun4zpybD23cU_zoIFhv6AshsAgLOBMntNWUKSS4QcH4_7azTH_6BjA-5Ixbybp5BhS0ZYNXK2OAhOwGnXHLVO74lIlpSvMn1k9GTvwSHMw" height="200" width="auto" /><br><br>美瑛町,位於北海道,是一自然景觀豐富的村莊所在。村裡的人,都自稱是居住在「丘陵之街(丘のまち)」;就如這個名稱一樣,從丘陵上所見到的景色是非常的壯碩美麗。請您務必來這個農業興盛的美瑛町,欣賞只有這裡才有的美景。]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh3.googleusercontent.com/proxy/dPMRme_854iZSMhImztf-fSxLuTTyAVTZrfmeBQa4fMbMxfE53l61xEGKG2Sx2hJif3gZzUPq0VedarWRd4prj6a-1K6s-kj55qm0G2iTAaHupVRqSKnlIDSz-KFvMv_1Dppg_3jVZubJ8hnJGMPxx2DIo6S6sy_QRc13PcLz8pePnSPOM6sun4zpybD23cU_zoIFhv6AshsAgLOBMntNWUKSS4QcH4_7azTH_6BjA-5Ixbybp5BhS0ZYNXK2OAhOwGnXHLVO74lIlpSvMn1k9GTvwSHMw</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
142.466972,43.588187,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>鶴居村</name>
<description><![CDATA[<img src="https://lh6.googleusercontent.com/proxy/2_tNZe81IExBYcJm0YmZwN2Q3AAJFiV0RzyJRZuQen-uLQ6l3E0JSptuHst0NwALhNafC77skCvj-vcW-ngF3SRmm9SBHXZliHMZv7UcIBEcAMaEE5bxgK5lLuAn-be2ZhtfKl339p0cFdjwOaBaxZIz55OK9vHA7jOArXIJ8wdmTjgOuFmvoHL2DdgfFfMeLxL-GlSVI2XiZQ4BFXZemZqrVz8WF6NIeSAIEvHX6ne427c3SESYgSEwxSphHw" height="200" width="auto" /><br><br>鶴居村的意思是「有鶴」的村莊。不過正確來說,應該是指有許多「丹頂鶴」棲息的村莊。由大自然與丹頂鶴所共同交織出的美麗景致,可是在別的地方看不到的唷!]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh6.googleusercontent.com/proxy/2_tNZe81IExBYcJm0YmZwN2Q3AAJFiV0RzyJRZuQen-uLQ6l3E0JSptuHst0NwALhNafC77skCvj-vcW-ngF3SRmm9SBHXZliHMZv7UcIBEcAMaEE5bxgK5lLuAn-be2ZhtfKl339p0cFdjwOaBaxZIz55OK9vHA7jOArXIJ8wdmTjgOuFmvoHL2DdgfFfMeLxL-GlSVI2XiZQ4BFXZemZqrVz8WF6NIeSAIEvHX6ne427c3SESYgSEwxSphHw</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
144.321216,43.229887,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>摩周湖</name>
<description><![CDATA[<img src="https://lh4.googleusercontent.com/proxy/B-kgYn6LXrwKlazxASRpwOrwyMK0YlqajrrR0uHHblthj-W4gR3prAaY3r7OLeyU5AH1DVBbMBHB4PdLl1d1Zu9l4__I2RpqVggZOf_vcZBqILNNsSxZ0garC2XQfhWFeBmUJ9hnVrWUde8UrcTr9esioz9UV2vBwesGkjXjIzSZJMfPNjEPgUi3P3ekFdzvtxwlVGYwkD1-ZxxIaVvzWJ_ySmFtkKZPntMEmiaIk3WuGwIB5C1vllARI2SxvA" height="200" width="auto" /><br><br>摩周湖,是全世界高透明度排名第二的湖泊。因為高透明度的關係,只能反射出藍色;而在大晴天時,湖面便透出特有的藍色,而這藍色就被稱為「摩周藍」。此外,摩周湖經常為霧氣所籠罩,因此又有「神祕的摩周湖」之稱。]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh4.googleusercontent.com/proxy/B-kgYn6LXrwKlazxASRpwOrwyMK0YlqajrrR0uHHblthj-W4gR3prAaY3r7OLeyU5AH1DVBbMBHB4PdLl1d1Zu9l4__I2RpqVggZOf_vcZBqILNNsSxZ0garC2XQfhWFeBmUJ9hnVrWUde8UrcTr9esioz9UV2vBwesGkjXjIzSZJMfPNjEPgUi3P3ekFdzvtxwlVGYwkD1-ZxxIaVvzWJ_ySmFtkKZPntMEmiaIk3WuGwIB5C1vllARI2SxvA</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
144.533489,43.580411,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>金森倉庫</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
140.716666,41.766106,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>八幡坂</name>
<description><![CDATA[<img src="https://lh5.googleusercontent.com/proxy/aw-LLjmT3Ni8PNMO9Wj1AeAwL7JbsvYd4kd7YZ8ktWbXiv7qWVta3RX9a6_5deE7H--6npNuKdFVoTIdVtoj_VoJlxDc9vWPDI07HvGFx95OnybHpOuS5rD36LzszFSa7j1kZD9rdTl7PFAQ49ykcQloFkMbICP7MpsBz40KWdlFhuiQJ3aeqEafhsMetkge17GzFh90dQ2pPYUAnvQ6IC0RXUxsoNMn8SGKJCO2wq88KlF-O0UjqZ7ttY69PWCSy1H8KOfvdWKNuA" height="200" width="auto" /><br><br>]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh5.googleusercontent.com/proxy/aw-LLjmT3Ni8PNMO9Wj1AeAwL7JbsvYd4kd7YZ8ktWbXiv7qWVta3RX9a6_5deE7H--6npNuKdFVoTIdVtoj_VoJlxDc9vWPDI07HvGFx95OnybHpOuS5rD36LzszFSa7j1kZD9rdTl7PFAQ49ykcQloFkMbICP7MpsBz40KWdlFhuiQJ3aeqEafhsMetkge17GzFh90dQ2pPYUAnvQ6IC0RXUxsoNMn8SGKJCO2wq88KlF-O0UjqZ7ttY69PWCSy1H8KOfvdWKNuA</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
140.713745,41.765657,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Goryokaku Park五稜郭公園</name>
<description><![CDATA[<img src="https://lh5.googleusercontent.com/proxy/VIgfZKCgqjRLe_3mT9dcR7ciVYegy0MMOzT4M918Y-DMsV4VlOcq93uD2ERZI_rZNiUMPBdDNlbwa7yyMrLPQniNkeUzpfEBOG6l-f5BJpB0AdRBIVz5tSnIw22CxUeYppRDB5JYnoB_Wh7G-P8iBwEiF2_3qn0W95Y8eUwmWJ1ikobMRK14Xfnv00P8B0dd45cf69B4Ez3d4gWgIR7hBIMe" height="200" width="auto" /><br><br>]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh5.googleusercontent.com/proxy/VIgfZKCgqjRLe_3mT9dcR7ciVYegy0MMOzT4M918Y-DMsV4VlOcq93uD2ERZI_rZNiUMPBdDNlbwa7yyMrLPQniNkeUzpfEBOG6l-f5BJpB0AdRBIVz5tSnIw22CxUeYppRDB5JYnoB_Wh7G-P8iBwEiF2_3qn0W95Y8eUwmWJ1ikobMRK14Xfnv00P8B0dd45cf69B4Ez3d4gWgIR7hBIMe</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
140.755799,41.797119,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>元町教會Catholic Motomachi Church</name>
<description><![CDATA[<img src="https://lh6.googleusercontent.com/proxy/6Xax24j1kabowrx4CYJT-ylFPB89jtbAOJ7jsAjZaj7PuW51SHG7QaZT1gfq6kj3vri7uCfaG8ncEaKv_jKUrMsBuKUzewJYdROi_4e6q5gryX5kzRbB65G9uapV1jSquKpsGfHZhWXoi-yuBrqInldpYU-493KGAe4D3DsCzmeH_oMgldtDgpxRCrJE5j9zCbtpo06aHmEuaTCWVLSydAddeGSz2qbnLOsh7WKtpkxd5ZJubjZe9hR3zTecV41mzqiGFPaVxtsg2yw1uR556uxGymqMA92hZoPkkQzX7FTnECihhodNrKYBVDMn8Ahi_Y_QMEdFcCUpbC59OvQXN8FIO6f09kRZxH9-SiUlTDcNcYsW40vZqzTUPx9WjZTL9FqdmlFCMz-54-bUqwN4J_EUbNHS1KPbAa-ztnRlW2LojLOQj0WgYEAOUvI" height="200" width="auto" /><br><br>]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh6.googleusercontent.com/proxy/6Xax24j1kabowrx4CYJT-ylFPB89jtbAOJ7jsAjZaj7PuW51SHG7QaZT1gfq6kj3vri7uCfaG8ncEaKv_jKUrMsBuKUzewJYdROi_4e6q5gryX5kzRbB65G9uapV1jSquKpsGfHZhWXoi-yuBrqInldpYU-493KGAe4D3DsCzmeH_oMgldtDgpxRCrJE5j9zCbtpo06aHmEuaTCWVLSydAddeGSz2qbnLOsh7WKtpkxd5ZJubjZe9hR3zTecV41mzqiGFPaVxtsg2yw1uR556uxGymqMA92hZoPkkQzX7FTnECihhodNrKYBVDMn8Ahi_Y_QMEdFcCUpbC59OvQXN8FIO6f09kRZxH9-SiUlTDcNcYsW40vZqzTUPx9WjZTL9FqdmlFCMz-54-bUqwN4J_EUbNHS1KPbAa-ztnRlW2LojLOQj0WgYEAOUvI</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
140.712762,41.763338,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name><![CDATA[函館朝市Hakodate's morning market]]></name>
<description><![CDATA[<img src="https://lh6.googleusercontent.com/proxy/mAKUi-TQj6kq2eTRMZlBaH9N49w4Oq-H08kttP-8BxvgIwH2t8j-lGs4IUNuAP4YGoVOvJaq4wh3Us01f2XbWN50wT76Ez598Xeibgtdr4LolwTnMr6KkrxM_VexFZFzThKv6mQNI7f8esQdHvNV-AVWoiiBbYS_WyfwpVnHKbD9Vj3NKxzk8ALmoLss3_9LlLslF3w3CFT24t095IyZlw" height="200" width="auto" /><br><br>]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh6.googleusercontent.com/proxy/mAKUi-TQj6kq2eTRMZlBaH9N49w4Oq-H08kttP-8BxvgIwH2t8j-lGs4IUNuAP4YGoVOvJaq4wh3Us01f2XbWN50wT76Ez598Xeibgtdr4LolwTnMr6KkrxM_VexFZFzThKv6mQNI7f8esQdHvNV-AVWoiiBbYS_WyfwpVnHKbD9Vj3NKxzk8ALmoLss3_9LlLslF3w3CFT24t095IyZlw</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
140.725356,41.772516,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>明治館Hakodate factory</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
140.718784,41.766552,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Koryuji高龍寺</name>
<description><![CDATA[<img src="https://lh3.googleusercontent.com/proxy/mkXQXVx1htDtS-7dyupGpEn2mPLYOyIMH4I_Lp-AUlebN8Ck3OGtB-3IZNHB2WNxqjlKfv9K7JPHxag_ziKMSSMKhivfs3A6KolOkSEzRLPxJJMSN3MQ8NMt-iTaGxP0CzOSxUQEv95W7HS0-_-zTaQ0BzxBEdDx9ckQP2nWrMz3TxrpB_GDaPMHiWhxwk5ZmMTU8wpWZwUd3Q-mgHEH8gRoxX7HWG4a" height="200" width="auto" /><br><br>包含外籍兵墓地]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh3.googleusercontent.com/proxy/mkXQXVx1htDtS-7dyupGpEn2mPLYOyIMH4I_Lp-AUlebN8Ck3OGtB-3IZNHB2WNxqjlKfv9K7JPHxag_ziKMSSMKhivfs3A6KolOkSEzRLPxJJMSN3MQ8NMt-iTaGxP0CzOSxUQEv95W7HS0-_-zTaQ0BzxBEdDx9ckQP2nWrMz3TxrpB_GDaPMHiWhxwk5ZmMTU8wpWZwUd3Q-mgHEH8gRoxX7HWG4a</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
140.699793,41.768618,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>旧函館区公会堂</name>
<description><![CDATA[<img src="https://lh5.googleusercontent.com/proxy/EQ7pKg2namfnwDe2TnfiOWyE3-2YswZ7aKt9zQHod5jTdkuoK26NQV9waP6QufrsccFKCX6x-7Qug7JocbtcnFgU43QbGic5grdDwYQBTr96rsjMgP63GC3eEFwtlHJb_bdvFYwiasUeNKz7wbGcTIPgJ_KRV8rFG7QNH5ekbrmueVN_zZHEJ19l_hOOgZjATACbC2SDFi-8RlE21A7tZg" height="200" width="auto" /><br><br>]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh5.googleusercontent.com/proxy/EQ7pKg2namfnwDe2TnfiOWyE3-2YswZ7aKt9zQHod5jTdkuoK26NQV9waP6QufrsccFKCX6x-7Qug7JocbtcnFgU43QbGic5grdDwYQBTr96rsjMgP63GC3eEFwtlHJb_bdvFYwiasUeNKz7wbGcTIPgJ_KRV8rFG7QNH5ekbrmueVN_zZHEJ19l_hOOgZjATACbC2SDFi-8RlE21A7tZg</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
140.708934,41.765024,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>千歲支笏湖冰濤祭</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
141.324571,42.757024,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>糠平湖 幻之橋</name>
<description><![CDATA[因為有管制進出,一般車輛不能進去,<br>要近距離看幻之橋,只能在這參加環保解說團,由志工老師帶你走進去。<br>但這會耗掉半天多時間,幾乎要住在村裡才有辦法參加]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
143.197733,43.366793,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>帯広農業高等学校(銀之匙)</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
143.182234,42.877477,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>六花亭本店</name>
<styleUrl>#icon-1577-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
143.20251,42.922253,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>美瑛町</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.466972,43.588187,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sounkyo層雲峽</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.952418,43.725149,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>糠平温泉 中村屋</name>
<description></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
143.190087,43.364778,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>帯広競馬場</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
143.182945,42.922574,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Panchou Buta Don元祖豚丼</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
143.203457,42.919235,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>たびのやど ふらりん麓鄉民宿 Furalin</name>
<description></description>
<styleUrl>#icon-1602-0288D1</styleUrl>
<Point>
<coordinates>
142.541798,43.304157,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>美瑛選果</name>
<description></description>
<styleUrl>#icon-1640-0288D1</styleUrl>
<Point>
<coordinates>
142.454596,43.59067,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ken and Mary tree</name>
<description><![CDATA[1976年日產汽車廣告的取景地,當時拍了16支系列廣告,第15支就是來美瑛拍的 (點這看廣告)<br>男主角叫Ken,女主角叫Mary,他們就在這棵樹前賞景,這棵樹就被稱作 Ken & Mary之木,廣為人知,這也就是40年前在美瑛爆紅的金城武樹 (台灣日本其實都一樣-.-)<br>題外話,第15支廣告的標題是 "沒有地圖的旅行",這就是自駕樂趣之一。]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
142.464145,43.609147,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>北西之丘展望公園Hokuseinookatenbo Park</name>
<description><![CDATA[位在拼布之路的高點,金字塔型的展望台,可俯瞰四方景色。<br>有大型停車場、廁所、自販機、觀光中心、和零星土產店,算是拼布之路的大點。]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
142.456926,43.605633,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>旭岳</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.854167,43.663611,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>青池Aoiike</name>
<description><![CDATA[2012年APPLE發表的OS X Mountain Lion,其中15款預設桌布之一<br>蘋果採用的是冬季降雪的青池,一年四季中最夢幻的景色。]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
142.614019,43.49342,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>親子の木</name>
<description></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
142.43521,43.6186,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>セブンスターの木 Seven Stars Tree</name>
<description><![CDATA[又叫北瑛一本木,西北邊的地標樹,<br>因為上過Seven Star香菸包裝盒,故被稱為 Seven Star 之木]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
142.431216,43.629077,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Hill of Mild Seven</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.427282,43.596482,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>十勝岳望岳台</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.640945,43.473179,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>しらひげの滝 Shirahige Waterfall</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.639396,43.474609,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>手作りパンカフェpicnic</name>
<styleUrl>#icon-1640-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.528226,43.546291,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>皆空窯</name>
<styleUrl>#icon-1640-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.604958,43.499175,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>新栄の丘展望公園</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.458892,43.557668,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>美馬牛鐘樓小學</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.456227,43.536563,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Shikisai No Oka四季彩展望台</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.464415,43.52902,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>水の教会</name>
<description><![CDATA[<img src="https://lh6.googleusercontent.com/E9a2YIBjIHc-Qs8pM8Lu5isEaIldqjZNc_dRs5XDtndDiXST00ovVGEly-2yEZQD_vjOsrNUcRVCV9X6lu6M5Ms68i1umQ582ZYEd6p_RjlTvc9RwsGy1vHqb3BXzD2-SFsFp5E" height="200" width="auto" /><br><br>]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<ExtendedData>
<Data name="gx_media_links">
<value>https://lh6.googleusercontent.com/E9a2YIBjIHc-Qs8pM8Lu5isEaIldqjZNc_dRs5XDtndDiXST00ovVGEly-2yEZQD_vjOsrNUcRVCV9X6lu6M5Ms68i1umQ582ZYEd6p_RjlTvc9RwsGy1vHqb3BXzD2-SFsFp5E</value>
</Data>
</ExtendedData>
<Point>
<coordinates>
142.625869,43.06382,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Unkai Terrace雲瀑展望台</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
142.598892,43.077074,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>一幻蝦拉麵 Ebisoba Ichimaboroshi head office</name>
<styleUrl>#icon-1640-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
141.345533,43.051293,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>新千歲機場</name>
<description><![CDATA[二樓有飲食街、活動廣場、<br>三樓有更大的美食區、拉麵街、小叮噹主題公園、巧克力工廠<br>四樓甚至有溫泉浴場、電影院、和過夜的機場旅館。<br>轉機等待時間不會無聊,超好打發時間,<br>且這有北海道農產、手信大集合,知名品牌的伴手禮幾乎都能在機場買到。]]></description>
<styleUrl>#icon-1899-0288D1</styleUrl>
<Point>
<coordinates>
141.681397,42.787599,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>札幌芸術の森</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
141.340147,42.939226,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>北海道開拓村</name>
<styleUrl>#icon-1899-0288D1-nodesc</styleUrl>
<Point>
<coordinates>
141.497084,43.048285,0
</coordinates>
</Point>
</Placemark>
</Document>
</kml>