Updated Building Map / added liezen export import script

This commit is contained in:
Frank Schubert
2023-02-03 13:59:54 +01:00
parent 20f52d9426
commit c96cc84775
9 changed files with 31943 additions and 3 deletions
@@ -0,0 +1,36 @@
<?php
ob_start();
?>
<div class="font-weight-bold">
{{STREET}}<br />
{{ZIP}} {{CITY}}
</div>
<hr />
<table>
<tr>
<th>Objekt-ID:</th>
<td>{{CODE}}</td>
</tr><tr>
<th>Gebäudetyp:</th>
<td>{{TYPE}}</td>
</tr><tr>
<th>POP:</th>
<td>{{POPNAME}}</td>
</tr><tr>
<th>GPS:</th>
<td><a href="https://maps.google.com/maps?t=k&q=loc:{{GPS}}">{{GPS}}</a></td>
</tr><tr>
<th>Kontakt:</th>
<td>{{CONTACT}}</td>
</tr><tr>
<th>Telefon:</th>
<td>{{PHONE}}</td>
</tr><tr>
<th>Email:</th>
<td>{{EMAIL}}</td>
</tr>
</table>
<?=str_replace("\n"," ",ob_get_clean())?>