add skeleton for mapview
This commit is contained in:
0
PoinCloudWeb.Web/public/javascripts/map.js
Normal file
0
PoinCloudWeb.Web/public/javascripts/map.js
Normal file
@@ -12,9 +12,9 @@ a {
|
||||
color: #00B7FF;
|
||||
}
|
||||
|
||||
.content {
|
||||
.content-padding {
|
||||
padding: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar {
|
||||
padding: 10px;
|
||||
25
PoinCloudWeb.Web/public/stylesheets/map.css
Normal file
25
PoinCloudWeb.Web/public/stylesheets/map.css
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
|
||||
|
||||
#map-settings {
|
||||
grid-area: right;
|
||||
border-left: 1px solid black;
|
||||
height: 100vw;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#map {
|
||||
grid-area: main;
|
||||
}
|
||||
|
||||
|
||||
.map-grid-container {
|
||||
display: grid;
|
||||
grid-template-areas:
|
||||
'header header header header header header'
|
||||
'main main main main main right'
|
||||
'footer footer footer footer footer footer';
|
||||
height: 100vw;
|
||||
grid-gap: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
@@ -1,8 +1,9 @@
|
||||
extends layout
|
||||
|
||||
block content
|
||||
h1 Welcome to #{title}
|
||||
p With this tool the scanning and managing of Point Clouds is possible
|
||||
p Please select a feature in the Nav-Bar.
|
||||
div.content-padding
|
||||
h1 Welcome to #{title}
|
||||
p With this tool the scanning and managing of Point Clouds is possible
|
||||
p Please select a feature in the Nav-Bar.
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,9 @@ doctype html
|
||||
html
|
||||
head
|
||||
title= title
|
||||
link(rel='stylesheet', href='/stylesheets/style.css')
|
||||
block scripts
|
||||
block links
|
||||
link(rel='stylesheet', href='/stylesheets/layout.css')
|
||||
script(src='/javascripts/layout.js')
|
||||
body
|
||||
div.navbar
|
||||
@@ -10,5 +12,4 @@ html
|
||||
div
|
||||
button(onclick="onClickScanner()") Scanner
|
||||
button(onclick="onClickMap()") Map
|
||||
div.content
|
||||
block content
|
||||
block content
|
||||
@@ -1,7 +1,16 @@
|
||||
extends layout
|
||||
|
||||
block content
|
||||
h1 Welcome to #{title}
|
||||
h1 Map
|
||||
|
||||
|
||||
block scripts
|
||||
script(src='/javascripts/map.js')
|
||||
block links
|
||||
link(rel='stylesheet', href='/stylesheets/map.css')
|
||||
|
||||
block content
|
||||
div.map-grid-container
|
||||
div#map-settings
|
||||
ul
|
||||
li Item 1
|
||||
li Item 2
|
||||
div(id="map", class="content-padding")
|
||||
p content
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
extends layout
|
||||
|
||||
block content
|
||||
h1 Welcome to #{title}
|
||||
h1 Scanner
|
||||
|
||||
|
||||
div.content-padding
|
||||
h1 Welcome to #{title}
|
||||
h1 Scanner
|
||||
|
||||
Reference in New Issue
Block a user