Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ELC_elections
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gestion-des-assemblees
ELC_elections
Merge requests
!71
Resolve "Display a map"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Display a map"
74-display-a-map
into
master
Overview
0
Commits
4
Pipelines
1
Changes
1
Merged
Alexis POYEN
requested to merge
74-display-a-map
into
master
4 years ago
Overview
0
Commits
4
Pipelines
1
Changes
1
Expand
Closes
#74 (closed)
0
0
Merge request reports
Viewing commit
2ac41e83
Prev
Next
Show latest version
1 file
+
6
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
2ac41e83
Feat : handle zoom and unzoom on map
· 2ac41e83
Alexis POYEN
authored
4 years ago
web/components/visualization/results-zone.js
+
6
−
1
Options
@@ -138,6 +138,9 @@ class ResultZoneComponent {
let
resultHandler
=
this
;
document
.
getElementById
(
"
map-section
"
).
parentElement
.
className
=
"
column is-full
"
;
console
.
log
(
this
.
ResultsMap
);
if
(
this
.
parent
.
zone
===
"
areas
"
)
this
.
ResultsMap
.
displayMapAreas
();
else
this
.
ResultsMap
.
displayMapSections
();
document
.
getElementById
(
"
zoom-map
"
).
addEventListener
(
"
click
"
,
function
()
{
resultHandler
.
unZoom
();
});
@@ -217,6 +220,9 @@ class ResultZoneComponent {
<i class="fa fa-expand-arrows-alt"></i>
</span>`
;
if
(
this
.
parent
.
zone
===
"
areas
"
)
this
.
ResultsMap
.
displayMapAreas
();
else
this
.
ResultsMap
.
displayMapSections
();
this
.
handleDom
();
}
@@ -225,7 +231,6 @@ class ResultZoneComponent {
if
(
this
.
parent
.
zone
===
"
areas
"
)
{
await
this
.
ResultsFlow
.
displayFlowAreas
();
this
.
ResultsDetaileds
.
displayAreasResults
();
}
else
if
(
this
.
parent
.
zone
===
"
sections
"
)
{
await
this
.
ResultsFlow
.
displayFlowSections
();
this
.
ResultsDetaileds
.
displaySectionsResults
();
Loading