Skip to content
Snippets Groups Projects

Resolve "Display a map"

Merged Alexis POYEN requested to merge 74-display-a-map into master
1 file
+ 6
1
Compare changes
  • Side-by-side
  • Inline
@@ -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