changeset 3603:2cf7e167dad9

client: configuration: prepared component for map layer configuration
author Markus Kottlaender <markus@intevation.de>
date Wed, 05 Jun 2019 09:38:59 +0200
parents 77aa6c137a2f
children 6248a4bc10c7
files client/src/components/systemconfiguration/MapLayers.vue
diffstat 1 files changed, 47 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/components/systemconfiguration/MapLayers.vue	Wed Jun 05 09:38:59 2019 +0200
@@ -0,0 +1,47 @@
+<template>
+  <div class="d-flex flex-column pb-4 border-bottom">
+    <h5 class="py-2 px-3 mb-2 m-0"><translate>Map Layers</translate></h5>
+    <div class="px-3 container-fluid">
+      <div class="row">
+        <div class="col-sm-6">
+          <div class="form-group">
+            <label for="ecdis-url" class="font-weight-bold">ECDIS URL</label>
+            <input
+              type="url"
+              class="form-control"
+              id="ecdis-url"
+              placeholder="https://..."
+            />
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="mt-4 px-3">
+      <a @click.prevent="submit" class="btn btn-info btn-sm text-white">
+        <translate>Send</translate>
+      </a>
+    </div>
+  </div>
+</template>
+
+<script>
+/* 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 by via donau
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ *
+ * Author(s):
+ * Markus Kottländer <markus@intevation.de>
+ */
+
+export default {
+  methods: {
+    submit() {}
+  }
+};
+</script>