Upload files to "/"

This commit is contained in:
Brus 2025-11-21 11:58:23 +01:00
commit 617279f501
4 changed files with 567 additions and 0 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

323
index.html Normal file
View file

@ -0,0 +1,323 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Geosphere Austria Webseiten</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Icons + Custom CSS -->
<link href="css/all.min.css" rel="stylesheet">
<link href="css/gba.css" rel="stylesheet">
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
body {
background: #f6f6f6;
}
.hero {
background: linear-gradient(135deg, #052E37 0%, #0C4A55 100%);
color: white;
padding: 1.50rem 0 2rem 0; /* more space above for the logo */
}
.category-title {
margin-top: 2rem;
margin-bottom: 1rem;
border-left: 6px solid #0C4A55;
padding-left: 10px;
font-weight: 600;
color: #0C4A55;
}
footer {
text-align: center;
padding: 20px;
background-color: #0C4A55;
}
footer a {
color: #bbdd12;
text-decoration: none;
}
.search-box {
max-width: 350px;
}
</style>
</head>
<body>
<!-- NAVBAR -->
<header class="navbar navbar-expand-md bg-light shadow-sm">
<nav class="container-xxl navbar-light">
<!-- <button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarCollapse">
<span class="fa fa-bars fa-lg"></span>
</button> -->
<!-- <div class="collapse navbar-collapse" id="navbarCollapse"></div> -->
<!-- <div class="search-box">
<input id="guide-search" class="form-control" type="text" placeholder="Suchen ..."
aria-label="Search">
</div> -->
</nav>
</header>
<!-- HERO SECTION -->
<!-- HERO SECTION -->
<section class="hero">
<div class="container">
<div class="row align-items-center text-center text-md-start">
<!-- LEFT: LOGO -->
<div class="col-md-4 mb-3 mb-md-0 d-flex justify-content-center justify-content-md-start">
<img src="./logo.svg"
alt="GeoSphere Austria"
class="img-fluid"
style="max-width: 160px;">
</div>
<!-- RIGHT: TITLE + SEARCH -->
<div class="col-md-8">
<h1 class="fw-bold">GeoSphere Austria Webportale</h1>
<p class="lead">Zentrale Zugänge zu Geodaten, Services & Tools</p>
<!-- SEARCH BAR -->
<div class="d-flex justify-content-center justify-content-md-start mt-3">
<div class="input-group" style="max-width: 420px;">
<input id="guide-search"
type="text"
class="form-control"
placeholder="Suchen ..."
aria-label="Suchen">
<button id="guide-search-btn"
class="btn btn-warning fw-bold"
type="button">
🔍
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<!-- FUNCTIONAL SEARCH JS -->
<script>
$(document).ready(function() {
$("#guide-search").on("keyup", function() {
let value = $(this).val().toLowerCase();
$(".card-item").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1);
});
});
});
</script>
<!-- ========================= GEOINFO CATEGORY ========================= -->
<h2 class="category-title">Geoinformation</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-4">
<!-- card template -->
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Tethys</h5>
<p class="card-text">Research Data Repository</p>
<a href="https://tethys.at/" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Thesaurus</h5>
<p class="card-text">Kontrolliertes Vokabular geowissenschaftlicher Begriffe</p>
<a href="https://thesaurus.geolba.ac.at/" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Inspire Viewer</h5>
<p class="card-text">Viewer für Inspire Daten</p>
<a href="https://gis.geologie.ac.at/maps.html" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Geodatenkatalog</h5>
<p class="card-text">Datenkatalog der GeoSphere Austria</p>
<a href="https://gis.geologie.ac.at/geonetwork/" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Geodatenkatalog Inspire (preview)</h5>
<p class="card-text">Inspire Metadatenkatalog</p>
<a href="https://catalog.geosphere.at/" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Geoserver</h5>
<p class="card-text">WMS Server für Geodaten</p>
<a href="https://gis.geologie.ac.at/geoserver" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">ESRI Rest Service</h5>
<p class="card-text">Current Version: 11.5 (JSON | SOAP | WMS | WMTS)"</p>
<a href="https://gis.geosphere.at/maps/rest/services" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">OCULUS</h5>
<p class="card-text">3D Geologie Webviewer</p>
<a href="https://oculus.geosphere.at/" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Rocky Austria</h5>
<p class="card-text">Geologie Österreich</p>
<a href="https://rocky-austria.geosphere.at/index.html" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">IRIS</h5>
<p class="card-text">Interaktives RohstoffInformationsSystem</p>
<a href="https://gis.geosphere.at/portal/apps/mapviewer/index.html?layers=0e137bd067d1417d9f3f3b21a705c838"
class="stretched-link"></a>
</div>
</div>
</div>
</div>
<!-- ========================= DEVELOPMENT CATEGORY ========================= -->
<h2 class="category-title">Entwicklung</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-4">
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Forgejo</h5>
<p class="card-text">Git repository of GeoSphere Austria</p>
<a href="https://gitea.geosphere.at/" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Github</h5>
<p class="card-text">Github server of GeoSphere Austria</p>
<a href="https://github.com/schmar00" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Gitlab</h5>
<p class="card-text">Gitlab server of GeoSphere Austria</p>
<a href="https://gitlab.geosphere.at" class="stretched-link"></a>
</div>
</div>
</div>
</div>
<!-- ========================= COMMUNICATION ========================= -->
<h2 class="category-title">Kommunikation</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-4">
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Nextcloud Talk</h5>
<p class="card-text">Nextcloud Talk Meetings</p>
<a href="https://rhea.geosphere.at/apps/spreed/" class="stretched-link"></a>
</div>
</div>
</div>
<div class="col card-item">
<div class="card h-100 shadow-sm">
<div class="card-body">
<h5 class="card-title">Nextcloud</h5>
<p class="card-text">Nextcloud Cloudservice</p>
<a href="https://rhea.geosphere.at/" class="stretched-link"></a>
</div>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<footer>
<nav aria-label="Footer links">
<ul class="footer-links">
<li><a href="https://www.geosphere.at/">WWW</a></li>
<li><a href="mailto:kontakt@geosphere.at">Email</a></li>
<li><a href="https://www.geosphere.at/de/impressum">Impressum</a></li>
<li><a href="https://geosphere.at/de/datenschutz">Datenschutz</a></li>
<li><a href="https://www.geosphere.at/de/legal">Legal</a></li>
</ul>
</nav>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

46
logo.svg Normal file
View file

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Ebene_1" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70.87 21.91">
<defs>
<style>
.cls-1 {
fill: #ebefec;
}
.cls-2 {
fill: #bfce40;
}
</style>
</defs>
<g>
<path class="cls-1" d="M18.51,8.86c-.62-.71-.87-1.45-.76-2.19,.18-1.14,1.16-2.07,1.75-2.54,.02-.02,.02-.04,0-.06-.14-.17-.28-.33-.42-.49-.02-.02-.04-.02-.06,0-.69,.55-1.79,1.61-2,2.99-.15,.97,.16,1.9,.93,2.79,1.08,1.25,2.39,2.04,3.91,2.39,.03,0,.05-.01,.06-.04,0-.13,.02-.46,.03-.66,0-.02-.01-.04-.03-.04-1.33-.32-2.45-1.01-3.4-2.12Z"/>
<path class="cls-2" d="M14.39,14.1c-2.29,1.23-3.37,1.11-3.88,.79-.58-.37-.62-1.14-.6-1.46,.05-1.18,.67-2.23,1.38-3.43,.89-1.5,1.9-3.21,2.08-5.66,.08-1.01-.31-2.55-2.39-4.33h-.02c-.34,0-.67,0-1.01,.04-.03,0-.04,.05-.02,.06,2.36,1.79,2.78,3.25,2.71,4.17-.17,2.28-1.13,3.91-1.98,5.34-.73,1.24-1.42,2.41-1.48,3.77-.04,.94,.3,1.71,.95,2.12,.34,.22,.76,.32,1.24,.32,.89,0,2.02-.36,3.37-1.09,1.77-.95,3.86-.71,6.21,.7,.02,.01,.04,0,.05-.02,.09-.21,.18-.41,.26-.62,0-.02,0-.04-.02-.04-2.55-1.51-4.86-1.74-6.86-.67Z"/>
<path class="cls-1" d="M7.28,18.73c-.87-3.1,.23-5.78,1.65-8.7,.14-.28,.27-.56,.41-.82,.93-1.86,1.72-3.46,1.32-5.47-.34-1.71-1.76-2.71-2.89-3.25,0,0-.01,0-.02,0-.32,.1-.64,.21-.95,.34-.02,.01-.03,.04,0,.05,.99,.36,2.78,1.24,3.14,3,.35,1.77-.36,3.2-1.26,5-.13,.27-.27,.54-.41,.83-1.49,3.07-2.64,5.88-1.69,9.23,.33,1.16,.77,1.99,1.21,2.57,0,0,0,0,.02,.01,.4,.12,.8,.22,1.22,.29,.03,0,.05-.03,.02-.05-.53-.43-1.28-1.3-1.76-3.02Z"/>
<path class="cls-1" d="M7.95,6.17c.36-2.75-1.6-3.89-3.03-4.35,0,0-.02,0-.03,0-.24,.16-.47,.33-.69,.5-.02,.02-.01,.05,.01,.06,2.93,.65,3.15,2.57,3,3.69C6.39,12.44,2.67,14.51,.83,15.15c-.02,0-.03,.03-.02,.04,.09,.21,.18,.42,.28,.62,0,.01,.02,.02,.04,.02,.84-.29,1.97-.84,3.09-1.84,2.04-1.82,3.29-4.45,3.73-7.82Z"/>
<path class="cls-1" d="M1.63,11.96c.19,.06,.39,.09,.59,.09,.71,0,1.45-.38,2.11-1.11,1.1-1.2,1.92-3.37,1.34-4.8-.66-1.63-2.19-1.97-3.27-2.01,0,0-.02,0-.02,0-.18,.22-.35,.45-.51,.69-.01,.02,0,.04,.02,.04,1.2-.03,2.53,.17,3.09,1.55,.41,1.02-.14,2.87-1.2,4.03-.37,.41-1.13,1.06-1.94,.81-.67-.2-1.25-1.26-1.63-2.31,0-.02-.05-.02-.05,0C.08,9.39,.03,9.83,0,10.29c0,0,0,.01,0,.01,.39,.74,.92,1.45,1.62,1.66Z"/>
<path class="cls-1" d="M2.3,9.27c.06,.01,.13,.02,.19,.02,.34,0,.65-.14,.9-.42h0c.62-.68,.71-1.43,.23-2.01-.56-.67-1.76-.93-2.42-.51-.25,.16-.77,.63-.29,1.7,.3,.66,.83,1.13,1.38,1.22Zm-.7-2.3c.1-.06,.24-.09,.39-.09,.37,0,.83,.16,1.07,.45,.09,.11,.36,.43-.2,1.04-.13,.14-.28,.2-.44,.17-.3-.05-.64-.37-.83-.8-.12-.27-.22-.63,0-.77Z"/>
<path class="cls-1" d="M19.57,6.48c-.25,.69-.11,1.45,.38,2.09,.44,.57,1.05,.95,1.86,1.16,.03,0,.06-.02,.06-.05-.03-.24-.06-.47-.11-.7,0-.02-.02-.03-.03-.04-.51-.17-.9-.44-1.2-.82-.34-.44-.44-.93-.27-1.39,.09-.26,.27-.49,.49-.65,.02-.01,.02-.04,.01-.06-.1-.19-.2-.38-.31-.57-.01-.02-.05-.03-.07-.02-.37,.25-.67,.61-.82,1.04Z"/>
<path class="cls-1" d="M16.21,11.68c-.38,.03-.69,.05-1.02,0-.5-.09-.88-.37-1.06-.79-.32-.73-.02-1.85,.84-3.15,.99-1.5,1.54-4.1,.19-6.89,0,0-.01-.02-.02-.02-.31-.13-.62-.24-.94-.34-.03,0-.06,.02-.04,.05,.91,1.61,1.76,4.44,.2,6.79-1.28,1.93-1.2,3.16-.9,3.85,.28,.65,.87,1.1,1.62,1.23,.42,.07,.8,.04,1.2,.01,.97-.08,2.29-.18,5.32,1.24,.02,0,.05,0,.05-.02,.05-.22,.1-.44,.14-.67,0-.02,0-.03-.02-.04-3.11-1.43-4.51-1.32-5.54-1.24Z"/>
<path class="cls-1" d="M16.27,15.37c-1.36,.19-2.58,.85-3.43,1.84-.86,1.01-1.23,2.24-1.06,3.48,.06,.41,.18,.81,.35,1.18,0,.02,.03,.03,.06,.03,.22-.02,.44-.06,.66-.1,.04,0,.05-.05,.04-.08-.19-.36-.32-.74-.38-1.15-.15-1.03,.17-2.06,.89-2.9,.73-.86,1.78-1.42,2.97-1.59,1.35-.19,2.71,.18,3.67,.98,.02,.02,.06,.02,.08-.01,.12-.18,.23-.36,.33-.54,.01-.02,0-.05-.01-.07-1.11-.89-2.64-1.31-4.17-1.09Z"/>
<path class="cls-1" d="M17.51,17.41c-1.26,.18-2.15,1.29-1.98,2.48,.05,.32,.16,.62,.34,.88,.01,.02,.04,.03,.06,.02,.19-.1,.38-.2,.57-.31,.02-.01,.03-.05,.01-.07-.14-.18-.22-.39-.26-.62-.11-.79,.5-1.53,1.36-1.65,.48-.07,.96,.08,1.3,.37,.02,.02,.05,.02,.07,0,.15-.16,.29-.32,.43-.48,.02-.02,.01-.05,0-.07-.5-.43-1.19-.65-1.89-.55Z"/>
</g>
<g>
<path class="cls-1" d="M30.88,5.7h-2.1c-.16,0-.28,.12-.28,.28v.47c0,.16,.13,.29,.28,.29h1.27v.3c0,.52-.43,1.29-1.36,1.29-.85,0-1.43-.65-1.43-1.62v-1.43c0-.98,.57-1.63,1.42-1.63s1.24,.6,1.31,1.13c.04,.17,.12,.25,.25,.25h.71c.12,0,.21-.09,.21-.22,0-.05,0-.09,0-.14-.15-1.05-.97-2.1-2.46-2.1s-2.57,1.11-2.57,2.7v1.45c0,1.59,1.03,2.7,2.51,2.7,.63,0,1.18-.23,1.51-.62v.24c0,.16,.13,.28,.28,.28h.46c.16,0,.28-.13,.28-.28v-3.05c0-.16-.12-.28-.28-.28Z"/>
<path class="cls-1" d="M39.18,4.43c-1.22,0-2.07,.9-2.07,2.19v.61c0,1.29,.85,2.18,2.07,2.18s2.08-.9,2.08-2.18v-.61c0-1.29-.86-2.19-2.08-2.19Zm-.93,2.08c0-.66,.36-1.08,.93-1.08s.94,.42,.94,1.08v.83c0,.67-.36,1.08-.94,1.08s-.93-.43-.93-1.08v-.83Z"/>
<path class="cls-1" d="M44.77,5.44c-.75-.21-1.4-.39-1.4-1.03,0-.58,.34-.81,1.16-.81,.87,0,1.04,.47,1.09,.82,.04,.18,.13,.26,.29,.26h.56c.16,0,.28-.13,.28-.28,0-.91-.69-1.82-2.22-1.82s-2.31,.67-2.31,1.84c0,1.47,1.19,1.8,2.15,2.07,.74,.21,1.38,.39,1.38,1s-.39,.92-1.22,.92c-1.13,0-1.32-.76-1.35-1.09-.02-.12-.11-.25-.27-.25h-.57c-.16,0-.28,.13-.28,.29,0,.83,.66,2.06,2.46,2.06,2.21,0,2.38-1.48,2.38-1.93,0-1.45-1.13-1.77-2.12-2.04Z"/>
<path class="cls-1" d="M50.3,4.43c-.52,0-.92,.16-1.22,.49v-.1c0-.16-.13-.29-.29-.29h-.57c-.16,0-.28,.13-.28,.29v6.07c0,.16,.13,.29,.28,.29h.57c.16,0,.29-.13,.29-.29v-1.95c.29,.32,.69,.48,1.22,.48,1.12,0,1.78-.83,1.78-2.22v-.57c0-1.39-.65-2.19-1.78-2.19Zm.64,2.08v.83c0,.68-.35,1.08-.93,1.08s-.94-.42-.94-1.08v-.86c0-.64,.37-1.06,.94-1.06,.68,0,.93,.56,.93,1.08Z"/>
<path class="cls-1" d="M55.51,4.43c-.52,0-.92,.16-1.21,.49v-1.97c0-.16-.13-.29-.29-.29h-.57c-.16,0-.28,.13-.28,.29v6.08c0,.16,.12,.28,.28,.28h.57c.16,0,.29-.13,.29-.28v-2.52c0-.67,.35-1.08,.92-1.08s.92,.42,.92,1.08v2.52c0,.16,.12,.28,.28,.28h.57c.16,0,.29-.13,.29-.28v-2.41c0-1.39-.64-2.19-1.77-2.19Z"/>
<path class="cls-1" d="M65.79,4.52h-.12c-.47,0-.88,.19-1.17,.55v-.25c0-.16-.13-.29-.28-.29h-.52c-.16,0-.28,.13-.28,.29v4.22c0,.16,.13,.28,.28,.28h.56c.16,0,.29-.13,.29-.28v-2.1c0-.84,.37-1.27,1.11-1.27h.13c.16,0,.29-.13,.29-.28v-.56c0-.16-.13-.29-.29-.29Z"/>
<path class="cls-1" d="M68.82,4.43c-1.21,0-2.08,.92-2.08,2.19v.61c0,1.29,.86,2.18,2.09,2.18,.69,0,1.5-.23,1.85-1.17h0s.04-.1,.04-.15c0-.13-.09-.23-.22-.23h-.61c-.16,0-.23,.1-.26,.15h0c-.36,.44-.51,.41-.81,.41-.56,0-.94-.43-.94-1.04v-.06h2.7c.16,0,.28-.13,.28-.29v-.43c0-1.24-.88-2.18-2.04-2.18Zm-.94,2.02c0-.61,.38-1.02,.94-1.02s.94,.4,.94,1.01v.04h-1.87v-.03Z"/>
<path class="cls-1" d="M60.33,4.43c-1.21,0-2.08,.92-2.08,2.19v.61c0,1.29,.86,2.18,2.09,2.18,.69,0,1.5-.23,1.85-1.17h0s.04-.1,.04-.15c0-.13-.09-.23-.22-.23h-.61c-.16,0-.23,.1-.26,.15h0c-.36,.44-.51,.41-.81,.41-.56,0-.94-.43-.94-1.04v-.06h2.7c.16,0,.28-.13,.28-.29v-.43c0-1.24-.88-2.18-2.04-2.18Zm-.94,2.02c0-.61,.38-1.02,.94-1.02s.94,.4,.94,1.01v.04h-1.87v-.03Z"/>
<path class="cls-1" d="M34.24,4.43c-1.21,0-2.08,.92-2.08,2.19v.61c0,1.29,.86,2.18,2.09,2.18,.69,0,1.5-.23,1.85-1.17h0s.04-.1,.04-.15c0-.13-.09-.23-.22-.23h-.61c-.16,0-.23,.1-.26,.15h0c-.36,.44-.51,.41-.81,.41-.56,0-.94-.43-.94-1.04v-.06h2.7c.16,0,.28-.13,.28-.29v-.43c0-1.24-.88-2.18-2.04-2.18Zm-.94,2.02c0-.61,.38-1.02,.94-1.02s.94,.4,.94,1.01v.04h-1.87v-.03Z"/>
</g>
<g>
<path class="cls-1" d="M26.64,19.09c-.04,.08-.09,.09-.14,.09h-.47c-.06,0-.1-.04-.1-.1,0-.04,.03-.1,.06-.19l2.21-6.08c.03-.07,.08-.15,.18-.15h.53c.09,0,.14,.07,.17,.14l2.25,6.15s.04,.1,.04,.13c0,.07-.05,.1-.1,.1h-.47c-.09,0-.13-.04-.15-.09l-.6-1.64h-2.82l-.58,1.64Zm1.98-5.61l-1.17,3.32h2.36l-1.18-3.32Z"/>
<path class="cls-1" d="M35.78,14.53c.08,0,.16,.07,.16,.17v4.34c0,.09-.07,.15-.16,.15h-.39c-.09,0-.16-.06-.16-.15v-.41c-.2,.33-.57,.65-1.28,.65-1.07,0-1.64-.75-1.64-2.06v-2.52c0-.09,.07-.17,.16-.17h.39c.08,0,.16,.07,.16,.17v2.56c0,.91,.37,1.4,1.07,1.4s1.15-.48,1.15-1.4v-2.56c0-.09,.07-.17,.16-.17h.39Z"/>
<path class="cls-1" d="M40.7,17.92c0,1-.8,1.36-1.75,1.36-1.06,0-1.67-.61-1.76-1.26,0-.03,0-.07,0-.1,0-.05,.06-.09,.12-.09h.39c.09,0,.12,.04,.14,.11,.09,.34,.4,.74,1.11,.74,.6,0,1.05-.19,1.05-.74,0-1.2-2.75-.24-2.75-2.2,0-.94,.85-1.29,1.64-1.29,1.43,0,1.61,.99,1.69,1.24v.07c0,.07-.07,.12-.13,.12h-.4c-.08,0-.11-.04-.13-.12-.07-.29-.22-.69-1.04-.69-.42,0-.93,.14-.93,.66,0,1.27,2.75,.31,2.75,2.21Z"/>
<path class="cls-1" d="M43.6,19.18c-1.28,0-1.49-.55-1.49-1.64v-2.37h-.72c-.09,0-.15-.07-.15-.16v-.32c0-.09,.06-.17,.15-.17,.49,0,.74-.11,.74-.7v-.34c0-.09,.06-.17,.15-.17h.37c.09,0,.16,.07,.16,.17v1.04h1.05c.09,0,.16,.07,.16,.17v.32c0,.09-.07,.16-.16,.16h-1.05v2.31c0,.83,.09,1.05,.87,1.05h.19c.09,0,.16,.07,.16,.17v.34c0,.09-.07,.15-.16,.15h-.26Z"/>
<path class="cls-1" d="M45.34,19.18c-.09,0-.16-.06-.16-.15v-4.34c0-.09,.07-.17,.16-.17h.35c.09,0,.16,.07,.16,.17v.62c.21-.43,.61-.79,1.31-.79h.13c.09,0,.17,.07,.17,.17v.37c0,.09-.07,.16-.17,.16h-.14c-.93,0-1.28,.77-1.28,1.54v2.27c0,.09-.07,.15-.16,.15h-.38Z"/>
<path class="cls-1" d="M48.54,13.12c0-.28,.2-.47,.47-.47s.47,.2,.47,.47-.2,.47-.47,.47-.47-.2-.47-.47Zm.28,6.06c-.09,0-.16-.06-.16-.15v-4.34c0-.09,.07-.17,.16-.17h.39c.08,0,.16,.07,.16,.17v4.34c0,.09-.07,.15-.16,.15h-.39Z"/>
<path class="cls-1" d="M54.25,19.03c0,.09-.07,.15-.17,.15h-.35c-.09,0-.16-.06-.16-.15v-.45c-.2,.46-.74,.69-1.28,.69h-.18c-.86,0-1.51-.45-1.51-1.37,0-1.1,.86-1.37,1.72-1.37h1.25v-.32c0-.58-.1-1.15-1.07-1.15-.74,0-.92,.29-1,.67,0,.06-.05,.12-.14,.12h-.4c-.08,0-.13-.05-.13-.13,0-.02,0-.04,0-.07,.08-.56,.41-1.23,1.66-1.23,1.59,0,1.75,1.01,1.75,1.81v2.79Zm-1.91-1.92c-.77,0-1.06,.24-1.06,.79s.42,.77,.91,.77h.19c.98,0,1.19-.72,1.19-1.27v-.3h-1.23Z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

198
maps.html Normal file
View file

@ -0,0 +1,198 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
*|----------------------------------------------------------------------------------------
*| IT
*| GeoSphere Austria
*|
*| Neulinggasse 38
*| 1030 Wien
*| https://www.geosphere.ac.at
*|----------------------------------------------------------------------------------------
<p><b>Copyright:</b> Copyright (c) 2021</p>
<p><b>Institution:</b>geosphere austria</p>
@author Thomas Brus
-->
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="description" content="INSPIRE, Webmap, Leaflet, geoserver," />
<meta name="author" content="Thomas Brus, GBA - https://www.geosphere.ac.at" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>GeoSphere INSPIRE Services</title>
<!-- Include Leaflet -->
<link rel="stylesheet" href="css/leaflet.css"/>
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.ie.css" />
<![endif]-->
<!-- Legenden css -->
<link rel="stylesheet" href="css/leaflet.wmslegend.css"/>
<!-- Leaflet ... -->
<script src="js/leaflet-src.js"></script>
<!-- sidebar ... -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/leaflet-sidebar.css" />
<script src="js/leaflet-sidebar.js"></script>
<!-- suchscript ... -->
<script src="js/leaflet-search.src.js"></script>
<!--
<script src="js/leaflet-control-geocoder.Geocoder.js"></script> -->
<script src="js/Leaflet.Search.js"></script>
<!-- featureInfo ... -->
<script src="js/jquery-1.10.1.min.js"></script>
<!-- Legenden ... -->
<script src="js/leaflet.wmslegendinfo.js"></script>
<!-- Layercontrol ... -->
<link rel="stylesheet" href="css/styledLayerControl.css" />
<script src="js/styledLayerControl.js"></script>
<script type="text/javascript" src="js/layers.js"></script>
<style>
body {
padding: 0;
margin: 0;
}
.info {
padding: 2px 6px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: rgb(255, 255, 255);
background: rgba(255,255,255,0.8);
box-shadow: 0 0 10px rgba(0,0,0,0.2);
border-radius: 5px;
}
html, body, #map {
height: 100%;
width: 100%;
}
</style>
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://webstat.geologie.ac.at/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '10']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<div id="sidebar" class="sidebar collapsed">
<!-- Nav tabs -->
<ul class="sidebar-tabs" role="tablist">
<li><a href="#Layerliste" role="tab"><i class="fa fa-bars"></i></a></li>
<li><a href="#contact" role="tab"><i class="fa fa-at"></i></a></li>
</ul>
<!-- Tab panes -->
<!-- darstellungsdienst -->
<div class="sidebar-content active">
<!-- layerliste services -->
<div class="sidebar-pane" id="Layerliste">
<p><h3><img src="GSA_LogoMitZusatz_Schwarz_RGB.svg" alt="GSA logo" width="200" alt="GBA" title="GBA" ><br><span style="color: rgb(179, 179, 179);"><small></small> </span><small><span
style="color: rgb(179, 179, 179);"></span></small><small><span
style="color: rgb(179, 179, 179);"></span></small>
</h3></p>
<br>
<span
style="font-family: Helvetica,Arial,sans-serif;font-size: small;"></span><br>
<span
style="font-size: 24px;font-weight: bold;">Inspire View Services</span>
<br><br>
<span style="font-family: Helvetica,Arial,sans-serif; font-size: small;"><span
style="font-weight: light;">
<b>Geology (GE) | </b><a href="https://gis.geologie.ac.at/geoserver/ge_einheiten/wms?service=WMS&version=1.3.0&request=GetCapabilities">wms</a><br>
Geologic Units 1:50k - Age<br>
Geologic Units 1:50k - Lithology<br>
Geologic Units 1:200k - Age<br>
Geologic Units 1:200k - Lithology<br>
Geologic Units 1:500k - Age<br>
Geologic Units 1:500k - Lithology<br>
Geologic Units 1:1M - Age<br>
Geologic Units 1:1M - Lithology<br><br>
Geologic Faults 1:50k | <a href="https://gis.geologie.ac.at/geoserver/ge_tectlines/wms?service=WMS&version=1.3.0&request=GetCapabilities">wms</a><br>
Geologic Faults 1:1M<br><br>
<b>Geophysics (GE) | </b><a href="https://gis.geologie.ac.at/geoserver/gp_geophysik/wms?service=WMS&version=1.3.0&request=GetCapabilities">wms</a><br>
Airborne geophysical surveys<br>
Georadar profiles<br>
Multi-electrode dc profiles<br>
Seismic lines<br><br>
<b>Hydrogeology (GE) | </b><a href="https://gis.geologie.ac.at/geoserver/hg_hydgeol/wms?&version=1.3.0&request=GetCapabilities">wms</a><br>
Active Wells <br>
Natural Hydrogeological Objects <br>
Aquifers 1:500k | </b><a href="https://gis.geologie.ac.at/geoserver/hg_aquifer500/wms?&version=1.3.0&request=GetCapabilities">wms</a><br>
<br>
<b>Mineral resources (MR) | </b><a href="https://gis.geologie.ac.at/geoserver/mr_lagerst/wms?&version=1.3.0&request=GetCapabilities">wms</a><br>
Mineral Occurrences<br>
<br>
<b>Natural risk zones (NZ) | </b><a href="https://gis.geologie.ac.at/geoserver/nz_risiken/wms?service=WMS&version=1.3.0&request=GetCapabilities">wms</a><br>
Observed Event (Media)<br><br>
</span><span
style="font-family: Helvetica,Arial,sans-serif; font-size: small;"><br>
</span>
<br>
</div>
<!-- contact -->
<div class="sidebar-pane" id="contact">
<p><h3><img src="GSA_LogoMitZusatz_Schwarz_RGB.svg" alt="GSA logo" width="100" alt="GSA" title="GSA" ><br><span style="color: rgb(179, 179, 179);"><small></small> </span><small><span
style="color: rgb(179, 179, 179);"></span></small><small><span
style="color: rgb(179, 179, 179);"></span></small>
</h3></p>
<br>
<br>
<span
style="font-family: Helvetica,Arial,sans-serif;font-size: small;">INSPIRE</span><br>
<span
style="font-size: 24px;font-weight: bold;">Technische Umsetzung</span>
<br>
<p>
<br><span
style="font-family: Helvetica,Arial,sans-serif;font-size: small;">
<br>Thomas Brus / Werner Stöckl <br>Fachabteilung IT & GIS / Department IT & GIS<br>
<a href="mailto:inspire@geologie.ac.at">inspire@geologie.ac.at</a>
<br><br>
<br>Webseite GBA: <a href="http://www.geosphere.at">GeoSphere Austria</a><br>
Datenschutz: <a href="https://www.geologie.ac.at/datenschutz">Datenschutz </a><br>
Impressum: <a href="https://www.geologie.ac.at/impressum">Impressum </a><br><br>
</span>
</p>
</div>
</div>
</div>
<!--
<div id="map" class="sidebar-map" style="height: 600px">></div>
-->
<div id="map" class="sidebar-map" ></div>
<script>
runMap();
</script>
</body>
</html>