Skip to content

Commit

Permalink
Fix Bug Mapillary
Browse files Browse the repository at this point in the history
Fixes #101
BorisGautier committed Jul 15, 2021
1 parent 9bec24a commit 16d417f
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -489,6 +489,7 @@ export class VerticalToolbarComponent implements OnInit {
this.modeMapillary = false;

this.sidenavContainer?.start?.open();
this.mly.remove();
document.getElementById('mly')!.style.display = 'none';
this.map?.setTarget('map');
}
@@ -779,7 +780,7 @@ export class VerticalToolbarComponent implements OnInit {
console.log(this.mly);

window.addEventListener('resize', () => {
this.mly.resize();
this.mly.remove();
});
}

3 changes: 2 additions & 1 deletion src/assets/i18n/en.json
Original file line number Diff line number Diff line change
@@ -51,7 +51,8 @@
},
"draw_in_map": {
"apply_draw": "APPLY",
"save": ""
"save": "SAVE",
"your_comment_placeholder": "Your Comment"
},
"header": {
"toolpit_info": "GeOsm ?"
3 changes: 2 additions & 1 deletion src/assets/i18n/fr.json
Original file line number Diff line number Diff line change
@@ -56,7 +56,8 @@
},
"draw_in_map": {
"apply_draw": "APPLIQUER",
"save": "SAUVEGARDER"
"save": "SAUVEGARDER",
"your_comment_placeholder": "Votre Commentaire"
},
"header": {
"toolpit_info": "GeOsm ?"

0 comments on commit 16d417f

Please sign in to comment.