diff --git a/admin/print_html.php b/admin/print_html.php index 4b00d86..a166462 100644 --- a/admin/print_html.php +++ b/admin/print_html.php @@ -126,7 +126,7 @@ $( document ).ready(function() { - var url = 'https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw'; + var url = 'https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token='; var attribution = 'Map data © OpenStreetMap contributors, ' + 'CC-BY-SA, ' + 'Imagery © Mapbox'; diff --git a/config.php b/config.php index 2d141af..d1d01a3 100644 --- a/config.php +++ b/config.php @@ -43,7 +43,6 @@ while ($row = $result->fetch(PDO::FETCH_ASSOC)) { case "introText": $strIntroText =$row['value']; break; - case "impressum": $strImpressum =$row['value']; break; @@ -72,7 +71,6 @@ while ($row = $result->fetch(PDO::FETCH_ASSOC)) { default: ; //echo "Fehler bei ".$row['key']; // Ende Lokalisierung - break; } @@ -86,41 +84,41 @@ if ($row=$result->fetch(PDO::FETCH_NUM)) { if ($row[0]==0) $strDistrict="hamm"; } - // Spezifische Konfiguration für Districtt - $result= $db->prepare("SELECT * FROM district WHERE district=:district"); - $result->bindParam(":district",$strDistrict); - $result->execute(); - while ($row = $result->fetch(PDO::FETCH_ASSOC)) { +// Spezifische Konfiguration für Districtt +$result= $db->prepare("SELECT * FROM district WHERE district=:district"); +$result->bindParam(":district",$strDistrict); +$result->execute(); +while ($row = $result->fetch(PDO::FETCH_ASSOC)) { - $boolActive = $row['active']==1; - $strDistrict = $row['district']; - $strDistrictTitle = $row['title']; - $strGeojson = $row['geojson']; + $boolActive = $row['active']==1; + $strDistrict = $row['district']; + $strDistrictTitle = $row['title']; + $strGeojson = $row['geojson']; - $numULAND=$row['ULAND']; - $numUREGBEZ=$row['UREGBEZ']; - $numUKREIS=$row['UKREIS']; - $numUGEMEINDE=$row['UGEMEINDE']; + $numULAND=$row['ULAND']; + $numUREGBEZ=$row['UREGBEZ']; + $numUKREIS=$row['UKREIS']; + $numUGEMEINDE=$row['UGEMEINDE']; - $numInfoLat=$row['lat']; - $numInfoLng=$row['lng']; - $numZoom=$row['zoom']; + $numInfoLat=$row['lat']; + $numInfoLng=$row['lng']; + $numZoom=$row['zoom']; - $strIntroText = ($boolActive) ? $strIntroText : "Dateneingabe nicht möglich"; - $fileGeojson ="geojson/$strGeojson"; - $strLocation = " AND ULAND=$numULAND AND UREGBEZ=$numUREGBEZ AND UKREIS=$numUKREIS "; - if ($numUGEMEINDE>0) { - $strLocation .= "AND UGEMEINDE=$numUGEMEINDE"; - } + $strIntroText = ($boolActive) ? $strIntroText : "Dateneingabe nicht möglich"; + $fileGeojson ="geojson/$strGeojson"; + $strLocation = " AND ULAND=$numULAND AND UREGBEZ=$numUREGBEZ AND UKREIS=$numUKREIS "; + if ($numUGEMEINDE>0) { + $strLocation .= "AND UGEMEINDE=$numUGEMEINDE"; } +} - // Arrax mit allen Distrikten für Auswahl - $arrDisctrict = array (); - $strSQL = "SELECT district,title FROM district WHERE active=1 ORDER BY title ASC"; - $result=$db->query($strSQL); - while ($row = $result->fetch(PDO::FETCH_ASSOC)) { - $arrDistrict[$row['district']]=$row['title']; - } +// Arrax mit allen Distrikten für Auswahl +$arrDisctrict = array (); +$strSQL = "SELECT district,title FROM district WHERE active=1 ORDER BY title ASC"; +$result=$db->query($strSQL); +while ($row = $result->fetch(PDO::FETCH_ASSOC)) { + $arrDistrict[$row['district']]=$row['title']; +} @@ -141,6 +139,14 @@ $arrMarkerType = array ( 5=>"truckMarker", ); +$arrIcon = array ( + 1 => "", + 2 => "", + 3 => "", + 4 => "", + 5 => "" +); + $arrAge = array ( 1 => "keine Angabe", 2 => "bis 14 Jahre", @@ -187,10 +193,3 @@ $arrTransport = array ( 6 => "Zu Fuß" ); -$arrIcon = array ( - 1 => "", - 2 => "", - 3 => "", - 4 => "", - 5 => "" -); \ No newline at end of file