-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsa_s_low_microbusiness.kml
1866 lines (1645 loc) · 59.4 KB
/
sa_s_low_microbusiness.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>sa_s_low_microbusiness.kml</name>
<Style id="sn_Restaurant_0_0_0403">
<IconStyle>
<scale>0.6</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/ristorazione.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>ff00aaff</color>
<scale>0</scale>
</LabelStyle>
</Style>
<StyleMap id="msn_Restaurant_0_0_0203">
<Pair>
<key>normal</key>
<styleUrl>#sn_Restaurant_0_0_0403</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_Restaurant_0_0_0203</styleUrl>
</Pair>
</StyleMap>
<StyleMap id="msn_ricettivit%C3%A04">
<Pair>
<key>normal</key>
<styleUrl>#sn_ricettivit%C3%A04</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_ricettivit%C3%A04</styleUrl>
</Pair>
</StyleMap>
<Style id="sn_ricettivit%C3%A04">
<IconStyle>
<scale>0.6</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/ricettivit%C3%A0.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sh_ricettivit%C3%A04">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/ricettivit%C3%A0.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="sh_Restaurant_0_0_0203">
<IconStyle>
<scale>0.7</scale>
<Icon>
<href>https://sites.google.com/site/slowbg2/icone/icone-legenda/ristorazione.png</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
</IconStyle>
<LabelStyle>
<color>ff00aaff</color>
<scale>0</scale>
</LabelStyle>
</Style>
<Folder>
<name>sa_s_low_microbusiness</name>
<open>1</open>
<Folder>
<name>Ricettività s-low</name>
<Placemark id=" 511 ">
<name>Pensión Costa Verde</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20Costa%20Verde.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Villa with garden of 600 m2.<br><br>
<b>Address: </b> Lugar Barrio San Román la Sierra, 23, 39012, Santander, Cantabria<br>
<b> </b><a href="http://www.turismodecantabria.com/descubrela/donde-alojarse/21-pension-costa-verde/buscador-aWRab25hPTcm">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.858277,43.457315,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 512 ">
<name>Pensión La Bolera</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20La%20Bolera.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The hostel is located in the surroundings of Santander, close to the public hospital.<br><br>
<b>Address: </b> Campogiro (Urb. Cotrobal), 10, 39011, Santander, Cantabria<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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.841467,43.454831,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 513 ">
<name>Hostal Mimosa</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Mimosa.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Built in the early 80s, the Mimosa Inn is opposite the Hospital Marqués de Valdecilla and few meters from the Residence Cantabria. Ideal to enjoy a pleasant and enjoyable stay in Cantabria.<br><br>
<b>Address: </b> Calle de Jazmín, 8, 39010, Santander, Cantabria<br>
<b> </b><a href="http://www.hostalmimosa.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.832157,43.458645,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 514 ">
<name>Hostal Lucy</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Lucy.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The hostel is located at the entrance to Santander (maritime area) (C/Marqués de la Hermida 68, 1st floor). In front of the hostel you can see: the new fish market and the new green bridge linking the popular Barrio Pesquero with the Lonja.<br><br>
<b>Address: </b> Calle del Marqués de la Hermida, 68, 39009, Santander, Cantabria<br>
<b> </b><a href="http://www.hostallucy.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.823299,43.452844,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 516 ">
<name>Hotel Bedoya</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hotel%20Bedoya.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Nice accommodation located in the city centre.<br><br>
<b>Address: </b> Calle Federico Vial, 8, 39002, Santander, Cantabria<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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.813366,43.456414,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 515 ">
<name>Hostal San Glorio</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20San%20Glorio.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The Hostal San Glorio is a small family-run hotel situated very near the city centre, right next to the lively Barrio Pesquero fishermens quarter, bus and train stations and the ferry terminal. The hotel has excellent public transport links to Santander Airport and the El Sardinero beaches. This outstanding setting makes the hotel a perfect base for both tourists and business guests alike.<br><br>
<b>Address: </b> Calle de Ruiz de Zorrilla, 18, 39009, Santander, Cantabria<br>
<b> </b><a href="http://www.sanglorio.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.814403,43.45569,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 517 ">
<name>Hostal Liébana</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Li%C3%A9bana.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Liébana Hostal has traditional character and is located in the heart of the locality. 30 bedrooms decorated in a simple and functional way with wood furniture and perfectly equipped with private bathroom, television, telephone and heating and the possibility to add an extra bed. Also, the clients can use the rest of the facilities the accommodation offers as cafeteria with tasty breakfast, reception service where the staff will provide you touristic information, free Wi-Fi connection and parking.<br><br>
<b>Address: </b> Calle Nicolás Salmerón, 9, 39009, Santander, Cantabria<br>
<b> </b><a href="http://www.hliebana.arrakis.es/">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.811753,43.456448,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 518 ">
<name>Hostal del Carmen</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20del%20Carmen.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Hostel Del Carmen in Santander offers fully equipped, comfortable and functional rooms. All of them with private bathroom, TV and heating, the hostel also has WIFI internet access throughout the hotel. The hostel also has a lift and there is public parking nearby to park the car. The location of Hostel Del Carmen is excellent, in the center of Santander, which allows our guests a quick access to Playa del Sardinero, Palacio de la Magdalena and Puerto Chico.<br><br>
<b>Address: </b> Calle de San Fernando, 48, 39010, Santander, Cantabria<br>
<b> </b><a href="http://www.hostaldelcarmen.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.8228,43.459691,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 519 ">
<name>Estudios Aránzazu</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Estudios%20Ar%C3%A1nzazu.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Situated a 10-minute walk from Santander FEVE Train Station, these simple studios offer a 24-hour reception with a tour desk. Estudios Aránzazu are just a 15-minute walk from Santander Cathedral. The citys ferry port is only 1.5 km away. You can also get a local bus to the Sardinero Beaches around 4 km away. Each Aránzazu studio has simple, functional décor and tiled and split-level floors.<br><br>
<b>Address: </b> Calle Mies del Valle, 4, 39010, Santander, Cantabria<br>
<b> </b><a href="http://www.apartamentosaranzazu.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.822455,43.460215,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 520 ">
<name>Hostal San Fernando</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20San%20Fernando.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Located in central area (San Fernando Street), near the Marqués de Valdecilla Hospital, 5 minutes from City Hall and 10 minutes from the bus and train stations.<br><br>
<b>Address: </b> Calle de San Fernando, 16, 39010, Santander, Cantabria<br>
<b> </b><a href="http://www.hostalsanfernando.es//">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.820126,43.460411,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 523 ">
<name>Hospedaje Magallanes</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hospedaje%20Magallanes.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Hospedaje Magallanes counts with single, double, twin and family bedrooms with private bathroom, TV and central heating. All rooms are completely refurbished and well decorated (bed linen and towels included) to offer the traveler the best comfort.<br><br>
<b>Address: </b> Calle Magallanes, 22, 39007, Santander, Cantabria<br>
<b> </b><a href="http://www.hospedajemagallanes.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.814471,43.462567,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 524 ">
<name>Pensión Cervantes</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20Cervantes.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>In the Santander center, just steps from the city hall, the Cervantes Accommodation offers comfortable rooms, enjoyable and affordable, together with a pleasant and helpful treatment. Located in the most important culinary and culture zone, it is also located at four hundred meters from the principal night clubs and bars; at hundred and fifty meters from the train and bus terminals (excellent for touring along towns during the day); three hundred meters away is the Ferry seaport and less than a kilometer from the beaches.<br><br>
<b>Address: </b> Calle Cervantes, 5, 3? Planta, 39001, Santander, Cantabria<br>
<b> </b><a href="http://www.hospedajecervantes.es/eng/index.html/">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.811666,43.462352,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 525 ">
<name>Pensión Figón</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20%20Fig%C3%B3n.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Hostal located in the city centre.<br><br>
<b>Address: </b> Calle del Cardenal Cisneros, 5, 39001, Santander, Cantabria<br>
<b> </b><a href="https://turismodecantabria.com/descubrela/donde-alojarse/1141-pension-figon/buscador-aWRab25hPTcm">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.811615,43.463195,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 526 ">
<name>Hostal Cisneros</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Cisneros.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Located in the city center for more than 30 years ago, Hostal Cisneros is framed in a typical building of the city of Santander in the early twentieth century.<br><br>
<b>Address: </b> Calle del Cardenal Cisneros, 8, 39001, Santander, Cantabria<br>
<b> </b><a href="http://www.hostalcisneros.es//">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.811222,43.463247,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 527 ">
<name>Pensión Margarita</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20Margarita.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Hostal located in the city centre.<br><br>
<b>Address: </b> Av de los Castros, 19, 39005, Santander, Cantabria<br>
<b> </b><a href="http://www.cantabriatotal.com/web/ficha-alojamientos-cantabria/pension-margarita.html">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.787163,43.473293,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 530 ">
<name>Hospedaje Botín</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hospedaje%20Bot%C3%ADn.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Pleasant establishment with nice rooms, bright views, daily housekeeping, quality lingerie and soundproof windows to the outside.<br><br>
<b>Address: </b> Calle Isabel II, 1, 39002, Santander, Cantabria<br>
<b> </b><a href="http://www.hospedajebotin.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.809334,43.462819,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 531 ">
<name>Hotel Antoyana</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hotel%20Antoyana.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Antoyana Hotel is located in the town of Santander, at the entrance of the city. It is located on a private estate of some 5,000 square meters which is completely fenced with entrance arch to it. Within the enclosure, the hotel offers free parking for its customers and large gardens.<br><br>
<b>Address: </b> Calle Camarreal Ojaiz, 134, 39011, Santander, Cantabria<br>
<b> </b><a href="http://www.hotelantoyana.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.884748,43.44226,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 532 ">
<name>Hostal La Mexicana</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20La%20Mexicana.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Located 250 metres from Catedral de Santa Maria de la Asunción. Feve Train Station is 500 metres away. There is a plenty of shops and restaurants which serve fresh seafood in the surrounding area. You can also find several clubs and bars in the lively Plaza de Ca?adío, 10 minutes walk from Hostal La Mexicana. Ideally located, the guest house is 9 minutes walk from Santander Ferry Port connected to England and 100 metres from Mercado de Abastos. Santander Airport is 10 minutes drive and there is a public parking available nearby.<br><br>
<b>Address: </b> Calle Juan de Herrera, 3, Santander, Cantabria<br>
<b> </b><a href="http://www.hostallamexicana.com/Alojamiento.aspx/">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.809081,43.462212,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 533 ">
<name>Hostal Jardín Secreto</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Jard%C3%ADn%20Secreto.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>JardínSecreto is a new concept of the traditional B&B, a place for those who want to stay in the centre of Santander. It is a charming, relaxed and friendly place where personal attention, care and treatment that breathes a warm and relaxing atmosphere away from the noise and haste, which will make your stay unforgettable.<br><br>
<b>Address: </b> Calle del Cardenal Cisneros, 37, 39007, Santander, Cantabria<br>
<b> </b><a href="http://www.jardinsecretosantander.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.814915,43.463078,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 535 ">
<name>Hostal Plaza</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Plaza.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Hostal Plaza is located in the center of Santander, next to the bus and railway stations. Santander Ferry Terminal is just 200 meters away, as is Santander Cathedral. A range of shops can be found immediately around the hotel, and public parking can be found within 5 minutes walk. Reception is happy to offer advice on what to see in the surrounding area.<br><br>
<b>Address: </b> Calle Cádiz, 13 entlo, 39002, Santander, Cantabria<br>
<b> </b><a href="http://www.pension-plaza.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.809315,43.459972,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 536 ">
<name>Hostal Cabo Mayor</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Cabo%20Mayor.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Cabo Mayor is designed for those seeking a pleasant place with a friendly personality. It puts at your disposal rooms playing the essence of a boutique hotel in a modern guest house comfortably furnished, with care and imagination. The owners work to make your stay as pleasant as possible, using their own travel experience to make you feel at home.<br><br>
<b>Address: </b> Calle Cádiz 1, 2a Planta, 39002, Santander, Cantabria<br>
<b> </b><a href="http://www.hcabomayor.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.810658,43.459591,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 537 ">
<name>Pensión Plaza Pombo B and B</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20Plaza%20Pombo%20B%26B.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Plaza Pombo B & B is a Bed and Breakfast accommodation (including breakfast) situated in the center of Santander. In the famous Plaza Pombo, center for cultural activities and trade in Santander, the owners have renovated an old 2 stars accommodation. Its strategic location gives this place an added value over any other property.<br><br>
<b>Address: </b> Calle Hernán Cortés, 25, 39003, Santander, Cantabria<br>
<b> </b><a href="http://www.plazapombo.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.801692,43.463392,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 538 ">
<name>Pensión Angelines</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20Angelines.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Located in the center of Santander, The Pension was refurbished last year. It has 12 rooms (with TV, heating and WIFI) and 5 outside toilets. Also it includes baggage and bicycle pick up service.<br><br>
<b>Address: </b> Calle Atilano Rodríguez, 9, 1a Planta, 39002, Santander, Cantabria<br>
<b> </b><a href="http://www.pensionangelines.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.809908,43.457933,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 539 ">
<name>Pensión San Miguel</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Pensi%C3%B3n%20San%20Miguel.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>The Pension San Miguel is located in the center of Santander close to the train and ferry stations and 15 minute walk from Santander beaches and tourist sites.<br><br>
<b>Address: </b> Calle Atilano Rodríguez, 4, 39002, Santander, Cantabria<br>
<b> </b><a href="http://www.pensionsanmiguel.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.81023,43.458621,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 540 ">
<name>Apartamentos Príncipe</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Apartamentos%20Pr%C3%ADncipe.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Spacious and comfortable apartments in the city center, next to Plaza Porticada, Paseo Pereda, the City Council and very close to Botin Center (in a coming future). The apartments are located in a few meters from the sea port of Brittany ferries that connects Santander with the seaside towns Plymouth and Portsmouth. The Prince apartments have fashionable and comfortable facilities with great sights and well connected to beaches, monuments and places of interest. The Prince apartments are located few meters from public parkings: Alfonso XIII, Cachavas, Pombo and the city Council.<br><br>
<b>Address: </b> Plaza Príncipe 2, 4a Planta, Santander, Cantabria<br>
<b> </b><a href="http://www.apartamentosprincipe.com/es//">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.805528,43.462185,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 542 ">
<name>Hostal La Torre</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20La%20Torre.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Hostal La Torre is located in Santander, opposite Menéndez Pelayo University. Situated 200 metres from Sardinero Beach, it offers simple rooms with free Wi-Fi, a TV and a private bathroom. There are vending machines for snacks and drinks, and you can walk to a range of restaurants within 5 minutes. The guest house is a 7-minute drive from Santander Cathedral and ferry terminal. You can drive to Santander Airport in just 15 minutes.<br><br>
<b>Address: </b> Av de los Castros, 53, 39005, Santander, Cantabria<br>
<b> </b><a href=" http://www.hostal-latorre.es/">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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.797339,43.471306,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 544 ">
<name>Hostal Rocamar</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Hostal%20Rocamar.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>Situated next to the University of Cantabria, Hostal Rocamar is 600 metres from Santanders El Sardinero Beach. This guest house offers functional rooms and apartments with free Wi-Fi and LCD TV. Hostal Rocamar is within a 5-minute walk of the Convention Centre and Sports Centre. All accommodation at the Rocamar Hostal includes a fan, heating and a safe. The modern bathrooms come with a hairdryer and amenities. Apartments also have a kitchenette and a living area. Located in the same building, the snack bar offers breakfast, tapas, meals, snacks and drinks throughout the day. There are also many typical restaurants and tapas bars within a 10-minute walk. Staff at the Rocamar can provide information about the surrounding area. Racing Santanders Sardinero Football Stadium is just 400 metres away, while the historic city centre is within a 15-minute walk.<br><br>
<b>Address: </b> Av de los Castros, 41, 39005, Santander, Cantabria<br>
<b> </b><a href="http://hostalrocamar.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.792463,43.472187,0</coordinates>
</Point>
</Placemark>
<Placemark id=" 545 ">
<name>Apartamentos Andrea Suite</name>
<open>1</open>
<Snippet maxLines="0"></Snippet>
<description><![CDATA[<FONT SIZE="3,5"><br>
<TD><img src="https://sites.google.com/site/santanderslow/microbusiness/Apartamentos%20Andrea%20Suite.jpg"WIDTH=330 HEIGHT=240 ALT=></TD><br>
<body> <div class="box"><br>
<b></b>These comfortable and stylish apartments are located on the Paseo Menéndez Pelayo, a residential area characterized by its charming trees. They are located within a ten minute walk from the Plaza de Ca?adío and close to the bay. Splendid place to observe the combination of sea and mountain.<br><br>
<b>Address: </b> Paseo Menéndez Pelayo, 78, 39006, Santander, Cantabria<br>
<b> </b><a href="http://www.apartamentosandreasuite.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_ricettivit%C3%A04</styleUrl>
<Point>
<coordinates>-3.791737,43.467163,0</coordinates>
</Point>