Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mapbox-patheditor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bertrand PINEL
mapbox-patheditor
Commits
680ac6e0
Commit
680ac6e0
authored
4 years ago
by
Bertrand PINEL
Browse files
Options
Downloads
Patches
Plain Diff
Add distance along the path
parent
45ab6558
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/components/path-editor.hbs
+1
-0
1 addition, 0 deletions
app/components/path-editor.hbs
app/components/path-editor.js
+5
-3
5 additions, 3 deletions
app/components/path-editor.js
app/services/mapbox-ws.js
+2
-2
2 additions, 2 deletions
app/services/mapbox-ws.js
with
8 additions
and
5 deletions
app/components/path-editor.hbs
+
1
−
0
View file @
680ac6e0
...
...
@@ -2,6 +2,7 @@
{{! Second div to display the current lattitude and longitude with binding attributes }}
<div>
<p>
Latitude:
<code>
{{
lat
}}
</code>
/ Longitude:
<code>
{{
lng
}}
</code></p>
<p>
Distance (in meters):
<code>
{{
fullDist
}}
</code></p>
</div>
{{! Right column to contain the map}}
<div
class=
"flex"
>
...
...
This diff is collapsed.
Click to expand it.
app/components/path-editor.js
+
5
−
3
View file @
680ac6e0
...
...
@@ -12,6 +12,7 @@ export default class PathEditorComponent extends Component {
@
tracked
lat
=
0
@
tracked
lng
=
0
@
tracked
fullDist
=
0
@
tracked
polyline
=
[]
startPoint
geoJsonPolyline
=
{
...
...
@@ -40,11 +41,12 @@ export default class PathEditorComponent extends Component {
// complete polyline by first retrieving new path though mapbox service
let
previousCoord
=
this
.
polyline
[
this
.
polyline
.
length
-
2
];
let
path
=
await
this
.
mapboxWs
.
direction
(
"
cycling
"
,
previousCoord
,
newCoord
);
if
(
path
.
length
>
0
)
{
// Insert intermediate coord in the polyline
if
(
path
.
coords
.
length
>
0
)
{
// Insert intermediate coord in the polyline
let
last
=
this
.
polyline
.
pop
();
for
(
let
i
=
0
;
i
<
path
.
length
;
i
++
)
{
this
.
polyline
.
push
(
path
[
i
]);
for
(
let
i
=
0
;
i
<
path
.
coords
.
length
;
i
++
)
{
this
.
polyline
.
push
(
path
.
coords
[
i
]);
}
this
.
fullDist
+=
path
.
dist
;
}
// Don't put back last point that could be outside the road
// this.polyline.push(last);
...
...
This diff is collapsed.
Click to expand it.
app/services/mapbox-ws.js
+
2
−
2
View file @
680ac6e0
...
...
@@ -42,9 +42,9 @@ export default class MapboxWsService extends Service {
}
});
if
(
response
.
status
===
200
&&
response
.
data
.
code
===
'
Ok
'
)
{
return
response
.
data
.
routes
[
0
].
geometry
.
coordinates
;
return
{
coords
:
response
.
data
.
routes
[
0
].
geometry
.
coordinates
,
dist
:
response
.
data
.
routes
[
0
].
distance
}
;
}
else
{
return
[]
;
return
{
coords
:
[],
dist
:
0
}
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment