You're looking for some 4images templates and styles? Then visit this thread to show websites with 4images templates to download.
0 Members and 1 Guest are viewing this topic.
<td class="row1"><p>Latitude of the place (-90...+90)<a href='http://www.mein-domain.com/admin/koordinatencheck.html'target='detail'onclick=\"javascript:window.open('','detail','width=600, height=600, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=no, dependent=no')\">Koordinatensuche</a></p></td> <td class="row1" width="68%"> <input type="text" size="50" name="image_gmap_latitude" value=""> </td>...
Hallo Leute,ich hätt auch ne Frage:Wo kann man den ""Zoom-level" ändern/voreinstellen? Bei mir werden die Fotos automatisch immer auf "Zoom-level 18" hochgeladen (egal ob admin oder user).
$image_gmap_zoom =
$image_gmap_zoom = 17;
mit den gespeicherten GPS-Daten lassen sich auch Verlinkungen zu Wetterdiensten herstellen
function google_weather($city){// replace special characters in city name// Ö->Oe, Ä->Ae, Ü->Ue// ö->oe, ä->ae, ü->ue$search = array(”/Ö/”, “/Ä/”, “/Ü/”, “/ö/”, “/ä/”, “/ü/”, “/ /”);$replace = array(”Oe”, “Ae”, “Ue”, “oe”, “ae”, “ue”, “+”);$city = trim(preg_replace($search, $replace, $city));//// Requesting the weather information from the google weather service.// The google weather service is available under the following url.// example http://www.google.com/ig/api?weather=Wien$url = “http://www.google.com/ig/api?hl=de&weather=” . $city;$file = file_get_contents($url);$file = utf8_encode($file);$wetter = simplexml_load_string($file);// Requested google weather url$Data["URL"] = $url;// general information elements$Data["stadt"] = utf8_encode($wetter->weather->forecast_information->city->attributes()->data);$Data["postalcode"] = $wetter->weather->forecast_information->postal_code->attributes()->data;$Data["datum"] = $wetter->weather->forecast_information->forecast_date->attributes()->data;$Data["current_time"] = $wetter->weather->forecast_information->current_date_time->attributes()->data;// Current weather conditions (condition and icon seems to be always empty)$Data["jetzt_wetter"] = utf8_encode($wetter->weather->current_conditions->condition->attributes()->data);$Data["jetzt_temp"] = $wetter->weather->current_conditions->temp_c->attributes()->data;$Data["jetzt_feuchtigkeit"] = $wetter->weather->current_conditions->humidity->attributes()->data;$Data["jetzt_wind"] = $wetter->weather->current_conditions->wind_condition->attributes()->data;$Data["jetzt_icon"] = “weather->current_conditions->icon->attributes()->data.”\” />”;// Today weather conditions$Data["heute"] = $wetter->weather->forecast_conditions[0]->day_of_week->attributes()->data;$Data["heute_min"] = $wetter->weather->forecast_conditions[0]->low->attributes()->data;$Data["heute_max"] = $wetter->weather->forecast_conditions[0]->high->attributes()->data;$Data["heute_wetter"] = utf8_encode($wetter->weather->forecast_conditions[0]->condition->attributes()->data);$Data["heute_icon"] = “weather->forecast_conditions[0]->icon->attributes()->data.”\” />”;// Day 2 weather conditions$Data["zwei"] = $wetter->weather->forecast_conditions[1]->day_of_week->attributes()->data;$Data["zwei_min"] = $wetter->weather->forecast_conditions[1]->low->attributes()->data;$Data["zwei_max"] = $wetter->weather->forecast_conditions[1]->high->attributes()->data;$Data["zwei_wetter"] = utf8_encode($wetter->weather->forecast_conditions[1]->condition->attributes()->data);$Data["zwei_icon"] = “weather->forecast_conditions[1]->icon->attributes()->data.”\” />”;// Day 3 weather conditions$Data["drei"] = $wetter->weather->forecast_conditions[2]->day_of_week->attributes()->data;$Data["drei_min"] = $wetter->weather->forecast_conditions[2]->low->attributes()->data;$Data["drei_max"] = $wetter->weather->forecast_conditions[2]->high->attributes()->data;$Data["drei_wetter"] = utf8_encode($wetter->weather->forecast_conditions[2]->condition->attributes()->data);$Data["drei_icon"] = “weather->forecast_conditions[2]->icon->attributes()->data.”\” />”;// Day 4 weather conditions$Data["vier"] = $wetter->weather->forecast_conditions[3]->day_of_week->attributes()->data;$Data["vier_min"] = $wetter->weather->forecast_conditions[3]->low->attributes()->data;$Data["vier_max"] = $wetter->weather->forecast_conditions[3]->high->attributes()->data;$Data["vier_wetter"] = utf8_encode($wetter->weather->forecast_conditions[3]->condition->attributes()->data);$Data["vier_icon"] = “weather->forecast_conditions[3]->icon->attributes()->data.”\” />”;return $Data;}
<a href="http://uk2.multimap.com/M4/content.cgi?client=public&lat={image_map_lat}&lon={image_map_lon}&page=weather.htm&displayName={image_name}" target="_blank">Wetter vor Ort</a>