-
Notifications
You must be signed in to change notification settings - Fork 0
/
be_cultural_resources.kml
2610 lines (2273 loc) · 70.1 KB
/
be_cultural_resources.kml
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>be_cultural_resources.kml</name>
<Style id="sn_sito unesco_0_0_01_0_0_4_20">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/borghi_png.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sn_triangle21">
<IconStyle>
<color>ff434cff</color>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/triangle.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sn_castello01000080040022">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/castelli.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>ff005cb8</color>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sh_sito unesco_0_0_01_0_0_4_20">
<IconStyle>
<scale>0.827273</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/borghi_png.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="s_ylw-pushpin_hl1">
<IconStyle>
<scale>0.709091</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/sitireligiosi.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>00ffffff</color>
</LabelStyle>
</Style>
<StyleMap id="m_ylw-pushpin1">
<Pair>
<key>normal</key>
<styleUrl>#s_ylw-pushpin1</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#s_ylw-pushpin_hl1</styleUrl>
</Pair>
</StyleMap>
<StyleMap id="msn_unesco">
<Pair>
<key>normal</key>
<styleUrl>#sn_unesco</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_unesco</styleUrl>
</Pair>
</StyleMap>
<Style id="s_ylw-pushpin01303117000216">
<IconStyle>
<scale>0.5</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/musei.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="m_ylw-pushpin0320011187206">
<Pair>
<key>normal</key>
<styleUrl>#s_ylw-pushpin01303117000216</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#s_ylw-pushpin_hl10011251780204</styleUrl>
</Pair>
</StyleMap>
<Style id="sn_unesco">
<IconStyle>
<scale>0.8</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/unesco.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="msn_triangle100">
<Pair>
<key>normal</key>
<styleUrl>#sn_triangle21</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_triangle30</styleUrl>
</Pair>
</StyleMap>
<Style id="sh_triangle30">
<IconStyle>
<color>ff434cff</color>
<scale>1.16667</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/triangle.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="s_ylw-pushpin_hl10011251780204">
<IconStyle>
<scale>0.5</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/musei.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="sn_castello10171050101012">
<Pair>
<key>normal</key>
<styleUrl>#sn_castello01000080040022</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sn_castello200001010001110</styleUrl>
</Pair>
</StyleMap>
<StyleMap id="msn_sito unesco_0_0_01_0_0_4_20">
<Pair>
<key>normal</key>
<styleUrl>#sn_sito unesco_0_0_01_0_0_4_20</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_sito unesco_0_0_01_0_0_4_20</styleUrl>
</Pair>
</StyleMap>
<Style id="sh_unesco">
<IconStyle>
<scale>0.945455</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/unesco.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="s_ylw-pushpin1">
<IconStyle>
<scale>0.6</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/sitireligiosi.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>00ffffff</color>
</LabelStyle>
</Style>
<Style id="sn_castello200001010001110">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/castelli.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>ff005cb8</color>
<scale>0</scale>
</LabelStyle>
</Style>
<Folder>
<name>be_cultural_resources</name>
<open>1</open>
<Folder>
<name>Luoghi della fede</name>
<Placemark id=" 757 ">
<name>Cathédrale Saint-Pierre</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="http://wgs-users.s3.amazonaws.com/beauvaisis/contenu/14/7/images/8-4-7-001077.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b>Address: </b>Rue Saint Pierre, Beauvais<br>
<b>Phone number: </b>+33 (0)3 44 48 11 60<br>
<b>Informations: </b>Opening: 01/06 au 31/10, ouvert de 10h +á 18h15, du 01/11 au 30/05 de 10h +á 12h15 et de 14h +á 17h15<br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.081234,49.432617,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 14 ">
<name>Abbaye de Saint-Paul</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/SaintPaul-AbbayeSaintPaul.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Founded in the seventh century by Saint Angadrem, the abbey consists today of remains of the portal of the Benedictine abbey, a dovecote (1699), a building of the eighteenth century.<br><br>
<b>Address: </b> 50 rue de l'abbaye 60650 Saint-Paul<br>
<b> </b><a href="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/SaintPaul-AbbayeSaintPaul.jpg">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.007318,49.42933799999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 13 ">
<name>Abbaye de Saint Arnoult</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/Warluis-AbbayeSaintArnould.JPG"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The abbey of Saint-Arnoult is a former Cistercian abbey which was a dependence of the Froidmonts abbey. Today it consists of three main buildings: the cellar (thirteenth century), the house (sixteenth century) and the chapel (XIIth century) which houses the tombstone of Saint-Arnoult.<br><br>
<b>Address: </b> Abbaye 60430 Warluis<br>
<b> </b><a href="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/Warluis-AbbayeSaintArnould.JPG">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.14225,49.390778,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 22 ">
<name>Cathédrale Notre Dame de Senlis</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/senlis-cathedraleNotreDame.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>One of the first Gothic buildings in the country: portal of the Virgin, a masterpiece of Gothic sculptures of the 12th century; a remarkable south tower, a masterpiece of Gothic architecture of the 13th century, the transept facades: both masterpieces of late Gothic style.<br><br>
<b>Address: </b> Place du Parvis Notre-Dame 60300 Senlis<br>
<b> </b><a href="http://www.senlis-tourisme.fr/Decouvrir/Decouvrir-Senlis/Histoire-et-Patrimoine/Cathedrale-Notre-Dame">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.58548,49.206986,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 18 ">
<name>Abbaye de Saint-Riquier</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/SaintRiquier-Abbaye.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Former Benedictine abbey of St. Riquier, founded in the first half of the seventh century.<br><br>
<b>Address: </b> Place de l'église 80135 Saint-Rquier<br>
<b> </b><a href=" http://www.ccr-abbaye-saint-riquier.fr/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>1.948001,50.133956,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 759 ">
<name>La Basse-Oeuvre</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="http://wgs-users.s3.amazonaws.com/beauvaisis/contenu/14/7/images/8-4-7-002129.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b>Address: </b>Rue Saint Pierre, Beauvais<br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.08075,49.432773,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 16 ">
<name>Abbatiale de Saint Germer de Fly</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/SAINT-GERMER-DE-FLY-Abbatiale.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Saint-Germer-de-Fly Abbey is a former Benedictine abbey located in the village of Saint-Germer-de-Fly, in Picardy in the Oisedépartement of France. Only the late Romanesque-early Gothic church remains, now the village parish church. It is regarded as one of the earliest manifestations of the Gothic style in France. A Late Gothic chapel added in the 14th century is noted as a smaller-scale reinterpretation of the Sainte-Chapelle of Paris.<br><br>
<b>Address: </b> 11 place de Verdun 60850 Saint-Germer-de-Fly<br>
<b> </b><a href=" http://www.ot-paysdebray.fr/patrimoine-culturel/patrimoine/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>1.780753,49.443406,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 758 ">
<name>Eglise Saint-Etienne</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="http://wgs-users.s3.amazonaws.com/beauvaisis/contenu/14/7/images/8-4-7-001078.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b>Address: </b>Place Saint Etienne, Beauvais<br>
<b>Phone number: </b>+33 (0)3 44 48 11 60<br>
<b>Informations: </b>Opening: 14h - 17h; Closed: 25/12 and 01/01<br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.080665,49.428445,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 21 ">
<name>Cathédrale Notre-Dame d'Amiens</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/AMIENS-la_cathedrale_notre_dame_d_amiens.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>One of the finest examples of sacred Gothic art, inscribed by UNESCO on the World Heritage List.<br><br>
<b>Address: </b> Notre-Dame dAmiens 30, place Notre-Dame 80000 Amiens<br>
<b> </b><a href=" http://www.somme-tourisme.com/cdt80/somme_tourisme/decouvrez/patrimoine/la_cathedrale_d_amiens/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.302048,49.89462500000001,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 24 ">
<name>Cathédrale Notre Dame de Noyon</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/Noyon-cathedraleNotreDame.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>First gothic religious building in the North of France.<br><br>
<b>Address: </b> Place du Parvis 60400 Noyon<br>
<b> </b><a href=" http://www.noyon-tourisme.com/Balades-Visites/Visites-et-patrimoine/Cathedrale-Notre-Dame-de-Noyon/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.999969999999999,49.582302,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 15 ">
<name>Collégiale Saint Pierre de Gerberoy</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/GerberoyColl%C3%A9giale_st_pierre_gerberoy.JPG"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Rebuilt in the 15th century, the Church of St. Peter reminds its vaulted nave with wooden Norman style.<br><br>
<b>Address: </b> Place de l'Eglise 60380 Gerberoy<br>
<b> </b><a href=" http://www.beauvaistourisme.fr/Decouvrir-et-visiter/Monuments-et-musees/Collegiale-Saint-Pierre-de-Gerberoy/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>1.849174,49.533955,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 23 ">
<name>Abbaye Royale de Chaalis</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/FONTAINE-CHAALIS-AbbayedeChaalis.JPG"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Ruins of the Cistercian abbey of Chaalis stand in a romantic park, in the forest of Ermenonville.<br><br>
<b>Address: </b> Abbaye royale de Chaalis,60330 Fontaine-Chaalis<br>
<b> </b><a href=" http://www.chaalis.fr/fr/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.685879,49.14817699999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 25 ">
<name>Abbaye d'Ourscamps</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/CHIRY-OURSCAMP-Abbaye_dOurscamp.JPG"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Substantial remains of a former Cistercian abbey founded in 1129 by the Bishop of Noyon.<br><br>
<b>Address: </b> Abbaye de Chiry-Ourscamp 60150 Chiry-Ourscamp<br>
<b> </b><a href=" http://www.noyon-tourisme.com/Balades-Visites/Loisirs-bien-etre-et-visites-guidees/Abbaye-d-Ourscamp/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.975315,49.534423,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 17 ">
<name>Cathédrale Saint Pierre de Beauvais</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/Beauvais-cathedraleSaintPierre.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Started to be built in 1225, but incomplete; highest vault height of the Gothic age (48,50m).In 1840, the cathedral was listed on the first list of historic monuments.<br><br>
<b>Address: </b> La Cathédrale de Beauvais , rue Saint-Pierre, 60000 Beauvais<br>
<b> </b><a href=" http://www.cathedrale-beauvais.fr/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.081509,49.432565,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 761 ">
<name>Eglise de Montmille</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="http://wgs-users.s3.amazonaws.com/beauvaisis/contenu/17/1/images/7-1-1-2-000408.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b>Address: </b>Rue de Montmille, Fouquenies<br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.040742,49.466513,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 760 ">
<name>Collégiale Saint-Barthélémy</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="http://wgs-users.s3.amazonaws.com/beauvaisis/contenu/14/8/images/8-4-2-002130.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b>Address: </b>Rue Saint Pierre, Beauvais<br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#m_ylw-pushpin1</styleUrl>
<Point>
<coordinates>2.082225,49.431487,0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Località</name>
<Folder>
<name>Borghi d'eccellenza</name>
<Placemark id=" 6 ">
<name>Ville de Saint Valery sur Somme</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/SaintValerySurSomme.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Uptown is a fine example of medieval town behind the harbor.<br><br>
<b>Address: </b> Office de Tourisme 2 place Guillaume le Conquérant 80230 Saint-Valery-sur-Somme<br>
<b> </b><a href="http://www.saint-valery-sur-somme.fr/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>1.629685,50.188512,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 9 ">
<name>Cité souterraine de Naours</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/NAOURS-Grottes_de_Naours.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>A city below earth, underground city, used originally as chalk quarry since the 3rd century.<br><br>
<b>Address: </b> La Cité souterraine de Naours 5, rue des Carrières - 80260 Naours<br>
<b> </b><a href="http://www.grottesdenaours.com/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>2.281066,50.03424500000001,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 7 ">
<name>Ville du Crotoy</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/LeCrotoy.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Crotoy is one of the main towns of the Bay of Somme.<br><br>
<b>Address: </b> Office de Tourisme du Crotoy 1 rue carnot 80550 Le Crotoy<br>
<b> </b><a href="http://www.crotoybaiedesomme.com/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>1.626468,50.21524999999999,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 4 ">
<name>Village de Gerberoy</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/Gerberoy-village.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Gerberoy has a remarkable heritage: old houses, the church of Saint-Pierre, ramparts. It was ranked among the one hundred and one most beautiful villages of France in 1982.<br><br>
<b>Address: </b> Mairie de Gerberoy Place La Hire et Xaintrailles 60380 Gerberoy<br>
<b> </b><a href="http://www.gerberoy.info/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>1.850054,49.534236,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 3 ">
<name>Crécy-en-Ponthieu</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/CRECY-sitedelabataille.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Scene of a famous battle which marked the beginning of the Hundred Years War.<br><br>
<b>Address: </b> Office de Tourisme de Crécy-en-Ponthieu 32 rue du Maréchal Leclerc de Hauteclocque 80150 Crecy en Ponthieu<br>
<b> </b><a href="http://www.crecyenponthieu.com/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>1.882892,50.252468,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 8 ">
<name>Ville de Chantilly</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/Chantilly_Vue-aerienne.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>City of art and history label.<br><br>
<b>Address: </b> Office de Tourisme de Chantilly 73 rue du Connétable 60500 Chantilly<br>
<b> </b><a href="http://www.ville-chantilly.fr/category/ville-d%E2%80%99art-et-d%E2%80%99histoire/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>2.466075,49.192344,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 5 ">
<name>Quartier Saint-Leu</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/Amiens-QuartierSaintLeu.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Nestled in the arms of the Somme, lie the small houses of Saint-Leu district, built on the waterfront.<br><br>
<b>Address: </b> Office du Tourisme 40, Place Notre-Dame 80000 Amiens<br>
<b> </b><a href="http://www.amiens-tourisme.com/tourinsoft/details/patrimoineculturel/PCUPIC0800010611/PCU/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;
background: transparent;
text-align: justify;
line-height: auto;
}
</style>
</head>
</div> </body>]]></description>
<styleUrl>#msn_sito unesco_0_0_01_0_0_4_20</styleUrl>
<Point>
<coordinates>2.30405,49.895982,0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Siti UNESCO</name>
<Placemark id=" 1 ">
<name>Beffroi de Saint Riquier</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/beauvaisamiensslow/cultural-resources/SaintRiquier-beffroi.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Since July 2005, the belfry of Saint Riquier was classified as World Heritage by UNESCO with 22 other belfries in the Nord-Pas-de-Calais and Picardy.<br><br>
<b>Address: </b>Syndicat d'Initiative, rue de lHôpital-Le Beffroi 80135 Saint-Riquier<br>
<b> </b><a href=" http://www.saint-riquier.com/">Website</a><br>
<head>
<style type="text/css">
.box {
width:345px;
height: auto;
border: 0 px solid;
color: #000000;