view client/public/index.html @ 4962:1b309a8e7673 fairway-marks-import

Distinguish more clearly between BCNLAT HYDRO and IENC features This allows importing them from different sources while keeping the history of data intact. Additionally, storing them in different tables also allows to have different attributes (here only dirimp via an m:n-table) and different constraints (currently not implemented) according to the IENC feature catalogue. Since both new tables inherit from a table with the same name as the old table, all entries still can be accessed via a table of the same name. Thus, no changes to GeoServer layers are necessary. ToDo: solve layout problems in the client SPA.
author Tom Gottfried <tom@intevation.de>
date Thu, 27 Feb 2020 21:05:09 +0100
parents 7a3ace19dc56
children
line wrap: on
line source

<!--
  This is Free Software under GNU Affero General Public License v >= 3.0
  without warranty, see README.md and license for details.

  SPDX-License-Identifier: AGPL-3.0-or-later
  License-Filename: LICENSES/AGPL-3.0.txt

  Copyright (C) 2018, 2019 by via donau
   – Österreichische Wasserstraßen-Gesellschaft mbH
  Software engineering by Intevation GmbH
-->
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0" />
    <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
    <title><%= process.env.VUE_APP_WINDOWTITLE || VUE_APP_TITLE %></title>
    <style>
      html {
        height: 100%;
        width: 100%;
        margin: 0 auto;
      }
      body {
        height: 100%;
        width: 100%;
        background-color: #efefef !important;
      }
    </style>
  </head>

  <body>
    <noscript>
      <strong
        >This webapplication needs Javascript enabled to run. Please enable it
        to continue.</strong
      >
    </noscript>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>