Changeset 66
- Timestamp:
- 01/10/11 17:37:34 (12 years ago)
- Location:
- trunk
- Files:
-
- 10 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/mapbender/http/nav/alkisnav.css
r60 r66 1 1 /* Style fuer ALKIS-Navigation 2 Vers . 2010-11-232 Version 2011-01-10 3 3 */ 4 4 body,p,a,.textfield,.sbutton,.cityText,.streetText,.city {font-family: Verdana, Arial, Helvetica, sans-serif;} 5 body { 5 body {font-size: 11px; color: #000000; margin: 0px;} 6 6 7 7 p {font-size: 10px;} 8 p.hilfe {font-size: 9px; text-align: right; color: gray;} /* Programmier-Hilfsfelder */9 p.start {font-size: 9px; color: gray;}8 p.hilfe {font-size: 9px; text-align: right; color: gray;} /* Programmier-Hilfsfelder */ 9 p.start {font-size: 9px; color: gray;} 10 10 p.nam {font-size: 10px; border: 1px solid navy; padding: 3px; margin: 0px;} 11 11 p.err {font-size: 11px; color: red;} … … 16 16 a:active {color: red;} 17 17 18 /* abgestuft e Treffer in Suche */18 /* abgestuft eingerueckte Treffer in Suche */ 19 19 div {margin: 0px; padding: 0px;} 20 20 div.back {font-size: 10px; color: gray; border-bottom: 1px dotted gray;} 21 21 div.nam {color: maroon;} /* Name */ 22 div.gb {color: green; margin-left: 6px;} /* Grundbuch */ 23 div.gk {color: black; margin-left: 0px; margin-top: 6px;} /* Gemarkung */ 24 div.fl {color: olive; margin-left: 6px; margin-top: 4px;} /* Flur */ 25 div.fs {color: navy; margin-left: 12px; margin-top: 0px;} /* Flurstueck */ 22 div.gb {color: green; margin-left: 6px;} /* Grundbuch */ 23 div.gk {color: black; margin-left: 0px; margin-top: 6px;} /* Gemarkung */ 24 div.fl {color: olive; margin-left: 9px; margin-top: 4px;} /* Flur */ 26 25 div.st {color: maroon;} 26 div.gs {color: olive; margin-left: 12px; margin-top: 2px;} /* Grundstueck, BVNR */ 27 div.fs {color: navy; margin-left: 18px; margin-top: 0px;} /* Flurstueck */ 27 28 29 /* Abstufungen (margin-left) 30 Adr.: 31 Name: 32 Flst: gk - fl - fs 33 Grdb: gk - gb - gs - fs 34 0 6 9 12 18 35 */ 28 36 td.hsnr {text-align: center; margin: 2px;} 29 37 hr {color: gray;} … … 57 65 width: 220px; 58 66 text-align: left; 59 border: 0px dashed #00aa00;67 border: 0px dashed #00aa00; 60 68 } 61 69 div#tabs li { … … 83 91 /* passt in Mapbender 2.5: tabs width=280, tab_frameHeight[n]=360 */ 84 92 iframe.OuterFrame{ 85 width: 2 60px; height: 330px;93 width: 250px; height: 330px; 86 94 padding: 0px; margin: 0px; 87 border: 0px dotted #ff0000;95 border: 0px dotted #ff0000; 88 96 overflow: hidden; 89 97 background-color: white; … … 94 102 width: 235px; height: 220px; 95 103 padding: 0px; margin: 0px; 96 border: 0px dotted #00ff00;104 border: 0px dotted #00ff00; 97 105 } -
trunk/data/mapbender/http/nav/blank_grd.html
r60 r66 8 8 <body> 9 9 <p class='start'>Suche nach Grundbuchblatt in ALKIS:<br><br> 10 Dieser Programmteil ist noch nicht realisiert!<br><br> 11 Geplant ist:<br><br> 12 Schritt 1: Auswahl Amtsgericht<br><br> 13 Schritt 2: Auswahl Grundbuch-Bezirk<br><br> 14 Schritt 3: Auswahl Grundbuch-Blatt<br><br> 10 Schritt 1: Suche Grundbuch-Bezirk<br><br> 11 Schritt 2: Auswahl Grundbuch-Blatt<br><br> 12 Schritt 3: Auswahl Grundstück (Buchungsstelle, BVNR)<br><br> 15 13 Schritt 4: Auswahl Flurstück</p> 16 14 </body> -
trunk/var/www/info/alkis/alkisfsnw.php
r65 r66 12 12 17.12.2010 Astrid Emde: Prepared Statements (pg_query -> pg_prepare + pg_execute) 13 13 04.01.2011 Frank JÀger: verkuerzte Nutzungsart-Zeilen mit Icon. Tabelle Gebiet/Lage/Nutzung 4spaltig. 14 0 4.01.2011 Korrektur der Fallunterscheidung "Funktion"14 05.01.2011 Korrektur der Fallunterscheidung "Funktion", auch "Vegetationsmerkmal", Title auf "Zustand". 15 15 16 16 ToDo: … … 336 336 echo "\n\t<td class='fla'>".$schnittflae." m²</td>"; 337 337 echo "\n\t<td class='lr'>"; 338 If ($fldclass == "Funktion" AND $label != "") { // Kurze Anzeige 339 // evtl. analog bei "Vegetationsmerkmal"? 338 If ( ($fldclass == "Funktion" OR $fldclass == "Vegetationsmerkmal") AND $label != "") { // Kurze Anzeige 340 339 if ($showkey) {echo "<span class='key'>(".$class.")</span> ";} 341 340 if ($blabla = "") { … … 367 366 echo "\n\t\t<br>"; 368 367 if ($showkey) {echo "<span class='key'>(".$zus.")</span> ";} 368 echo "<span title='Zustand'>"; 369 369 switch ($zus) { 370 370 case 2100: … … 377 377 echo "Zustand: ".$zus; break; 378 378 } 379 echo "</span>"; 379 380 } 380 381 If ($nam != "") {echo "<br>Name: ".$nam;}
Note: See TracChangeset
for help on using the changeset viewer.