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;
|
color: #00B7FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content-padding {
|
||||||
padding: 50px;
|
padding: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
padding: 10px;
|
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
|
extends layout
|
||||||
|
|
||||||
block content
|
block content
|
||||||
h1 Welcome to #{title}
|
div.content-padding
|
||||||
p With this tool the scanning and managing of Point Clouds is possible
|
h1 Welcome to #{title}
|
||||||
p Please select a feature in the Nav-Bar.
|
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
|
html
|
||||||
head
|
head
|
||||||
title= title
|
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')
|
script(src='/javascripts/layout.js')
|
||||||
body
|
body
|
||||||
div.navbar
|
div.navbar
|
||||||
@@ -10,5 +12,4 @@ html
|
|||||||
div
|
div
|
||||||
button(onclick="onClickScanner()") Scanner
|
button(onclick="onClickScanner()") Scanner
|
||||||
button(onclick="onClickMap()") Map
|
button(onclick="onClickMap()") Map
|
||||||
div.content
|
block content
|
||||||
block content
|
|
||||||
@@ -1,7 +1,16 @@
|
|||||||
extends layout
|
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
|
extends layout
|
||||||
|
|
||||||
block content
|
block content
|
||||||
h1 Welcome to #{title}
|
div.content-padding
|
||||||
h1 Scanner
|
h1 Welcome to #{title}
|
||||||
|
h1 Scanner
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user