proximite double cartouch width for boussole #2333
This commit is contained in:
parent
13fd182c60
commit
568d941d90
@ -723,7 +723,7 @@ export default {
|
||||
return segments;
|
||||
},
|
||||
setPaperContour(){
|
||||
console.log('setPaperContour, this.sailentEntites', this.sailentEntites);
|
||||
// console.log('setPaperContour, this.sailentEntites', this.sailentEntites);
|
||||
// convert sailent entites to x,y points
|
||||
let points = [];
|
||||
this.sailentEntites.forEach(entite => {
|
||||
|
@ -77,16 +77,18 @@ export default {
|
||||
|
||||
// revisions
|
||||
let data=[];
|
||||
this.concernement.revisions.forEach(rev => {
|
||||
if (rev.entites.length > 3) {
|
||||
let d = new Date(rev.changed);
|
||||
data.push({
|
||||
'id': rev.revision_id,
|
||||
'changed': d.toLocaleDateString("fr-FR")
|
||||
})
|
||||
this.history_value = Math.max(this.history_value, parseInt(rev.revision_id));
|
||||
}
|
||||
});
|
||||
if (this.concernement && this.concernement.revisions) {
|
||||
this.concernement.revisions.forEach(rev => {
|
||||
if (rev.entites.length > 3) {
|
||||
let d = new Date(rev.changed);
|
||||
data.push({
|
||||
'id': rev.revision_id,
|
||||
'changed': d.toLocaleDateString("fr-FR")
|
||||
})
|
||||
this.history_value = Math.max(this.history_value, parseInt(rev.revision_id));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (data.length > 1) {
|
||||
this.history_slider_ops = {
|
||||
|
@ -81,14 +81,17 @@ export default {
|
||||
}
|
||||
},
|
||||
created () {
|
||||
console.log(`Concernement view created, this.$route`, this.$route);
|
||||
console.log(`Concernement view created, id: ${this.cid}, eid: ${this.eid}, opened_concernement:${this.opened_concernement}`);
|
||||
console.log('Concernement view created, allSuperpositions_clustered', this.allSuperpositions_clustered);
|
||||
console.log("superposition", this.superposition);
|
||||
|
||||
if(this.map_mode === "proximite" && this.$route.query.proximite_cid && this.$route.query.proximite_eid){
|
||||
this.proximite_cid_eid = {
|
||||
cid: this.$route.query.proximite_cid,
|
||||
eid: this.$route.query.proximite_eid,
|
||||
if(this.map_mode === "proximite"){
|
||||
if (this.$route.query.proximite_cid && this.$route.query.proximite_eid) {
|
||||
this.proximite_cid_eid = {
|
||||
cid: this.$route.query.proximite_cid,
|
||||
eid: this.$route.query.proximite_eid,
|
||||
}
|
||||
}
|
||||
// as we have two content to show multiply the cartouch with by 2
|
||||
// necessary for mapitem opening scale and position
|
||||
|
Loading…
x
Reference in New Issue
Block a user