Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Caillat Michel
yafits
Commits
f66e75e2
Commit
f66e75e2
authored
Nov 18, 2019
by
Caillat Michel
Browse files
Enhanced the output of numerical results for the contour measurements
parent
aec689fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
yafitsv/views/olqv_2d.ejs
View file @
f66e75e2
...
...
@@ -605,8 +605,8 @@ var _marker_styles_f = function(feature) {
case
'
LineString
'
:
var
coordinates
=
selectedFeature
.
getGeometry
().
getCoordinates
();
let
properties
=
selectedFeature
.
get
(
"
properties
"
);
let
level
=
properties
[
"
level
"
]
infos_line
.
innerHTML
=
'
Contour level :
'
+
level
.
toExponential
(
3
)
;
let
level
=
properties
[
"
level
"
]
.
toExponential
(
3
)
infos_line
.
innerHTML
=
'
Contour level :
'
+
level
;
if
(
"
measurements
"
in
properties
)
{
populateInfosBlock
(
"
Contour at level
"
+
level
,
properties
[
"
measurements
"
]);
infos_line
.
innerHTML
+=
'
<button type="button" class="btn btn-outline-link btn-sm" data-toggle="modal" data-target="#ModalInfosBlock">etc.</button>
'
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment