|
|
|
|
Hotelempfehlungen
Gran Canaria
| - |
Bungalows
Doña Rosa
/ Sehr schöne und
preiswerte Bungalow-Anlage
direkt am Strand von Playa
del Ingles gelegen.
40 komplett ausgestattete
Bungalows mit 2 Schlafzimmer
für max. 5 Personen
(Bungalow pro Tag ca.
90 EUR) - Hotelempfehlung
für junge Paare und
Familien mit Kindern.
|
| - |
Aparthotel
Green Field /
Preiswertes und komfortables
3-Sterne-Hotel inmitten
der Partymeile von Playa
del Ingles gelegen.
(DZ inkl. Frühstück
ab ca. 43 EUR, EZ ab 39
EUR pro Nacht) - Hotelempfehlung
für junge Paare und
Alleinreisende |
| - |
H10
Playa Meloneras Palace
/ Ruhig gelegenes
5 Sterne-Hotel in Maspalomas
ca. 300 m Golfplatz "Maspalomas"
entfernt (DZ inkl. Frühstück
ab 110 EUR) - Hotelempfehlung
für junge Familien
mit Kindern, ältere
Paare und Golfer. |
| - |
Apartamentos
BlueBay Beach Club
/ Komfortables 4 Sterne-Hotelresort
in der Nähe von San
Agustín. (DZ
ab 75 EUR) - Hotelempfehlung
für Familien und
ältere Paare |
| - |
Marina
Suites / Sehr
komfortables und preiswertes
4 Sterne-Aparthotel mit
besonders geräumigen
Appartements (ca. 60 qm)
direkt neben dem Yachthafen
von Puerto Rico"
und nur ca. 300 m
vom Sandstrand entfernt.
(Appartement ab 97 EUR)
- Hotelempfehlung für
Familien mit Kindern und
ältere Paare |
| - |
Morasol
Suites / Modernes
und stilvoll eingerichtetes
4 Sterne-Aparthotel in
Puerto Rico (Studio
ab 86 EUR) - Hotelempfehlung
für Paare und sportaktive
Urlauber (Wassersport) |
| weitere
Hotelempfehlungen in Spanien |
|
-
|
Hoteltipps
Costa
de la Luz |
|
-
|
Hoteltipps
auf Costa
del Sol |
|
-
|
Hoteltipps
auf Teneriffa
|
|
-
|
Hoteltipps
auf Gran
Canaria |
|
-
|
Hoteltipps
Fuerteventura |
|
|
Ferienhaus-Katalog
|
| - |
Ferienhäuser
in Spanien online buchen |
|
|
|
|
|
|
|
|
|
|
|
|
|
empfehlenswerte Ferienhotels
weltweit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Preisvergleich
von Billig-, Charter- und Linienflüge
nach Gran Canaria
|
|
|
Preisvergleich
von Pauschalreisen an die Gran Canaria
|
 |
Preisvergleich
von Pauschalreisen nach Gran
Canaria von mehr als 40
Reiseveranstalter bei opodo |
 |
Preisvergleich
von Pauschalreisen nach Gran
Canaria aller großen
deutschen Reiseveranstalter
bei expedia |
 |
Pauschalreisen
nach Gran Canaria oder Hotels
direkt bei ausgesuchten Reiseveranstaltern
günstig online buchen:
- Reiseangebote von TUI
- Reiseangebote von Thomas
Cook /
Neckermann
- Reiseangebote von ITS
- Reiseangebote von FTI |
|
Preisvergleich
von Hotels auf Gran Canaria
|
|
| - Preisvergleich von Hotels
auf Gran Canaria bei booking
|
|
|
|
|
|
|
|
|
|
|
|
|
Mietwagen auf Gran Canaria
online buchen:
|
|
|
|
|
|
|
|
|
Das aktuelle Wetter auf Gran Canaria:
weather->forecast_information->city->attributes()->data;
$wetter['datum'] = $api->weather->forecast_information->forecast_date->attributes()->data;
$wetter['zeit'] = $api->weather->forecast_information->current_date_time->attributes()->data;
// Aktuelles Wetter
$wetter[0]['zustand'] = $api->weather->current_conditions->condition->attributes()->data;
$wetter[0]['temperatur'] = $api->weather->current_conditions->temp_c->attributes()->data;
$wetter[0]['luftfeuchtigkeit'] = $api->weather->current_conditions->humidity->attributes()->data;
$wetter[0]['wind'] = $api->weather->current_conditions->wind_condition->attributes()->data;
$wetter[0]['icon'] = str_replace($icons_google, $icons_src, $api->weather->current_conditions->icon->attributes()->data);
// Wettervorhersage heute, morgen, in zwei und in drei Tagen ($wetter[1] bis $wetter[4])
$i = 1;
foreach($api->weather->forecast_conditions as $weather)
{
$wetter[$i]['wochentag'] = $weather->day_of_week->attributes()->data;
$wetter[$i]['zustand'] = $weather->condition->attributes()->data;
$wetter[$i]['tiefsttemperatur'] = $weather->low->attributes()->data;
$wetter[$i]['hoechsttemperatur'] = $weather->high->attributes()->data;
$wetter[$i]['icon'] = str_replace($icons_google, $icons_src, $weather->icon->attributes()->data);
$i++;
}
return $wetter;
}
// Funktionsaufruf in Array
$wetter = website_wetter("Las-Palmas","es");
// Beispielhafte Ausgabe
echo " ".$wetter['stadt'].":\n";
echo " ";
echo "Aktuell: \n";
echo " \n";
echo $wetter[0]['zustand']." \n";
echo "Temperatur: ".$wetter[0]['temperatur']."° C \n";
echo $wetter[0]['luftfeuchtigkeit']." \n";
echo $wetter[0]['wind']." \n";
echo " | ";
echo " ";
echo "".$wetter[1]['wochentag']." \n";
echo " \n";
echo $wetter[1]['zustand']." \n";
echo "min. ".$wetter[1]['tiefsttemperatur']."° C | max. ".$wetter[1]['hoechsttemperatur']."° C \n";
echo " | ";
echo " ";
echo "".$wetter[2]['wochentag']." \n";
echo " \n";
echo $wetter[2]['zustand']." \n";
echo "min. ".$wetter[2]['tiefsttemperatur']."° C | max. ".$wetter[2]['hoechsttemperatur']."° C \n";
echo " | ";
echo " ";
echo "".$wetter[3]['wochentag']." \n";
echo " \n";
echo $wetter[3]['zustand']." \n";
echo "min. ".$wetter[3]['tiefsttemperatur']."° C | max. ".$wetter[3]['hoechsttemperatur']."° C \n";
echo " | ";
echo " ";
echo "".$wetter[4]['wochentag']." \n";
echo " \n";
echo $wetter[4]['zustand']." \n";
echo "min. ".$wetter[4]['tiefsttemperatur']."° C | max. ".$wetter[4]['hoechsttemperatur']."° C \n";
echo " | ";
?>
|
|
|
|
|
|
|
Nützliche
Infos über Gran Canaria:
| Übersicht
der Flugverbindungen
nach Gran
Canaria mehr... |
Übersicht
der Fährverbindungen
nach Gran
Canaria
- ab
Cadiz |
|
Infos über
Sehenswürdigkeiten
auf Gran Canaria
unter wikipedia.org
|
| Infos
über Las
Palmas de
Gran Canaria unter
wikipedia.org
|
| Übersicht
der Golfplätze
auf Gran Canaria
unter grancanaria.com
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Nützliche
Reiseinformationen über
Gran Canaria
| Krankenhäuser
auf Gran Canaria*1 |
responseData->results AS $val) {
$dstring.='<<---<<>-><';
$dstring.=str_replace(array('<<---<<>-><','','','','','',''),'',$val->title);
$dstring.='<<---<<>-><';
$dstring.=str_replace('<<---<<>-><','',$val->url);
}
$dstring=substr($dstring,11);
//echo ' '.$dstring;
$array=explode ('<<---<<>-><',$dstring);
echo " " .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n";
?>
|
|
|
| Museen
auf Gran Canaria*1 |
responseData->results AS $val) {
$dstring.='<<---<<>-><';
$dstring.=str_replace(array('<<---<<>-><','','','','','',''),'',$val->title);
$dstring.='<<---<<>-><';
$dstring.=str_replace('<<---<<>-><','',$val->url);
}
$dstring=substr($dstring,11);
//echo ' '.$dstring;
$array=explode ('<<---<<>-><',$dstring);
echo " " .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n";
?>
|
|
|
| Restaurants
auf Gran Canaria*1 |
responseData->results AS $val) {
$dstring.='<<---<<>-><';
$dstring.=str_replace(array('<<---<<>-><','','','','','',''),'',$val->title);
$dstring.='<<---<<>-><';
$dstring.=str_replace('<<---<<>-><','',$val->url);
}
$dstring=substr($dstring,11);
//echo ' '.$dstring;
$array=explode ('<<---<<>-><',$dstring);
echo " " .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n";
?>
|
|
|
| Bars
auf Gran Canaria*1 |
responseData->results AS $val) {
$dstring.='<<---<<>-><';
$dstring.=str_replace(array('<<---<<>-><','','','','','',''),'',$val->title);
$dstring.='<<---<<>-><';
$dstring.=str_replace('<<---<<>-><','',$val->url);
}
$dstring=substr($dstring,11);
//echo ' '.$dstring;
$array=explode ('<<---<<>-><',$dstring);
echo " " .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n" .
" \n";
?>
|
|
|
| Reiseführer
für Gran Canaria
*2 |
Items->Item as $movie) {
$i++;
if($movie->SmallImage->URL){
echo ("\tDetailPageURL."\" ".$tabla."> SmallImage->URL."\" border=\"0\" align=\"left\" alt=\"Cover\">\n");
} else { echo 'Leider kein Bild vorhanden.';
}
echo ("\tDetailPageURL."\" ".$tabla." class=\"reisefuehrer\">".htmlspecialchars($movie->ItemAttributes->Title)." ");
if($movie->ItemAttributes->Author[0]){
echo ("Autor: ".htmlspecialchars($movie->ItemAttributes->Author[0]));
} else {}
if($movie->ItemAttributes->Author[1]){
echo (" - ".htmlspecialchars($movie->ItemAttributes->Author[1]));
} else {}
if($movie->ItemAttributes->Author[2]){
echo (" - ".htmlspecialchars($movie->ItemAttributes->Author[2]));
} else {}
if($movie->ItemAttributes->PublicationDate){
echo (" erschienen: ".htmlspecialchars($movie->ItemAttributes->PublicationDate));
} else {}
if($movie->ItemAttributes->Feature[0]){
echo (" Beschaffenheit: ".htmlspecialchars($movie->ItemAttributes->Feature[0]));
} else {}
if($movie->ItemAttributes->Feature[1]){
echo (", ".htmlspecialchars($movie->ItemAttributes->Feature[1]));
} else {}
if($movie->ItemAttributes->Feature[2]){
echo (", ".htmlspecialchars($movie->ItemAttributes->Feature[2]));
} else {}
if($movie->OfferSummary->LowestNewPrice->FormattedPrice){
echo (" Preis: ".htmlspecialchars($movie->OfferSummary->LowestNewPrice->FormattedPrice));
} else { echo ' Preis: keine Angaben';
}
print "\t \n";
if($i >= 3)
break;}
?>
|
Quelle: Amazon
 |
|
|
|
|
|
|
|
|
|
|