This commit is contained in:
Keith Paterson 2021-02-04 08:13:43 +01:00
parent 737f9a7b56
commit 41b7b0498f
3 changed files with 169 additions and 97 deletions

View File

@ -668,7 +668,7 @@ You should have received a copy of the GNU General Public License along with FG
this.featureLookup===undefined) { this.featureLookup===undefined) {
return return
} }
console.log('Edited Parking : ' + this.$store.state.Editable.data.parking) console.debug('Edited Parking : ' + this.$store.state.Editable.data.parking)
//Notify list //Notify list
if (this.featureLookup[this.$store.state.Editable.index]===undefined) { if (this.featureLookup[this.$store.state.Editable.index]===undefined) {
return return

View File

@ -16,13 +16,21 @@
<span class="label">Name :</span> <span class="label">Name :</span>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-input placeholder="Name" v-model="name" :disabled="!editing"></el-input> <el-input
placeholder="Name"
v-model="name"
:disabled="!editing"
></el-input>
</el-col> </el-col>
<el-col :span="5"> <el-col :span="5">
<span class="label">Number :</span> <span class="label">Number :</span>
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
<el-input placeholder="Number" v-model="number" :disabled="!editing"></el-input> <el-input
placeholder="Number"
v-model="number"
:disabled="!editing"
></el-input>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
@ -40,7 +48,11 @@
--> -->
<el-radio-group v-model="wingspan" :disabled="!editing"> <el-radio-group v-model="wingspan" :disabled="!editing">
<el-tooltip content="PIPER PA-31/CESSNA 404 Titan" placement="top" effect="light"> <el-tooltip
content="PIPER PA-31/CESSNA 404 Titan"
placement="top"
effect="light"
>
<el-radio :label="15">A (7.5)</el-radio> <el-radio :label="15">A (7.5)</el-radio>
</el-tooltip> </el-tooltip>
<el-tooltip <el-tooltip
@ -64,13 +76,25 @@
> >
<el-radio :label="36">C (18)</el-radio> <el-radio :label="36">C (18)</el-radio>
</el-tooltip> </el-tooltip>
<el-tooltip content="B767 Series/AIRBUS A-310" placement="top" effect="light"> <el-tooltip
content="B767 Series/AIRBUS A-310"
placement="top"
effect="light"
>
<el-radio :label="52">D (26)</el-radio> <el-radio :label="52">D (26)</el-radio>
</el-tooltip> </el-tooltip>
<el-tooltip content="B777 Series/B787 Series/A330 Family" placement="top" effect="light"> <el-tooltip
content="B777 Series/B787 Series/A330 Family"
placement="top"
effect="light"
>
<el-radio :label="66">E (33)</el-radio> <el-radio :label="66">E (33)</el-radio>
</el-tooltip> </el-tooltip>
<el-tooltip content="BOEING 747-8/AIRBUS A-380-800" placement="top" effect="light"> <el-tooltip
content="BOEING 747-8/AIRBUS A-380-800"
placement="top"
effect="light"
>
<el-radio :label="80">F (40)</el-radio> <el-radio :label="80">F (40)</el-radio>
</el-tooltip> </el-tooltip>
</el-radio-group> </el-radio-group>
@ -80,7 +104,7 @@
<el-col :span="7"> <el-col :span="7">
<span class="label">Aircraft :</span> <span class="label">Aircraft :</span>
</el-col> </el-col>
<el-col :span="17">{{type}}</el-col> <el-col :span="17">{{ type }}</el-col>
</el-row> </el-row>
<el-row v-if="editing"> <el-row v-if="editing">
<el-col :span="7"> <el-col :span="7">
@ -91,7 +115,6 @@
<el-radio-button label="Nose Wheel"></el-radio-button> <el-radio-button label="Nose Wheel"></el-radio-button>
<el-radio-button label="Center"></el-radio-button> <el-radio-button label="Center"></el-radio-button>
</el-radio-group> </el-radio-group>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
@ -107,7 +130,14 @@
content="D.DDD, DMS, DM supported" content="D.DDD, DMS, DM supported"
:disabled="!editing || calculate === 'Center'" :disabled="!editing || calculate === 'Center'"
> >
<el-input placeholder="Please input" v-model="coordinates" slot="reference" :disabled="!editing || calculate ==='Center'"></el-input> <el-input
placeholder="Please input"
v-model="coordinates"
slot="reference"
:disabled="!editing || calculate === 'Center'"
@focus="coordFocussed = true"
@blur="coordFocussed = false"
></el-input>
</el-popover> </el-popover>
</el-col> </el-col>
</el-row> </el-row>
@ -124,7 +154,14 @@
content="D.DDD, DMS, DM supported" content="D.DDD, DMS, DM supported"
:disabled="!editing || calculate === 'Nose Wheel'" :disabled="!editing || calculate === 'Nose Wheel'"
> >
<el-input placeholder="Please input" v-model="noseCoordinates" slot="reference" :disabled="!editing || calculate === 'Nose Wheel'"></el-input> <el-input
placeholder="Please input"
v-model="noseCoordinates"
slot="reference"
:disabled="!editing || calculate === 'Nose Wheel'"
@focus="noseCoordFocussed = true"
@blur="noseCoordFocussed = false"
></el-input>
</el-popover> </el-popover>
</el-col> </el-col>
</el-row> </el-row>
@ -139,7 +176,9 @@
:max="720" :max="720"
:step="0.1" :step="0.1"
:precision="1" :precision="1"
:disabled="!editing || calculate ==='Heading'" :disabled="!editing || calculate === 'Heading'"
@focus="headingFocussed = true"
@blur="headingFocussed = false"
></el-input-number> ></el-input-number>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
@ -153,7 +192,11 @@
<span class="label">Parking Type :</span> <span class="label">Parking Type :</span>
</el-col> </el-col>
<el-col :span="17"> <el-col :span="17">
<el-select v-model="parking_type" placeholder="Select" :disabled="!editing"> <el-select
v-model="parking_type"
placeholder="Select"
:disabled="!editing"
>
<el-option <el-option
v-for="type in options" v-for="type in options"
:key="type.value" :key="type.value"
@ -169,7 +212,12 @@
<span class="label">Airline :</span> <span class="label">Airline :</span>
</el-col> </el-col>
<el-col :span="17"> <el-col :span="17">
<el-select v-model="airlineCodes" multiple placeholder="Select" :disabled="!editing"> <el-select
v-model="airlineCodes"
multiple
placeholder="Select"
:disabled="!editing"
>
<el-option <el-option
v-for="item in airlines" v-for="item in airlines"
:key="item.value" :key="item.value"
@ -183,7 +231,7 @@
<el-col :span="7"> <el-col :span="7">
<span class="label">Pushback Route End :</span> <span class="label">Pushback Route End :</span>
</el-col> </el-col>
<el-col :span="17">{{pushbackEnd}}</el-col> <el-col :span="17">{{ pushbackEnd }}</el-col>
</el-row> </el-row>
</div> </div>
</template> </template>
@ -206,7 +254,9 @@
while (heading<0) { while (heading<0) {
heading += 360 heading += 360
} }
this.rotateFocussed = true;
this.headingChange(heading); this.headingChange(heading);
this.rotateFocussed = false;
}, },
headingChange( newValue ) { headingChange( newValue ) {
while (newValue>=360) { while (newValue>=360) {
@ -215,12 +265,14 @@
while (newValue<0) { while (newValue<0) {
newValue += 360 newValue += 360
} }
if ( Math.abs( ( this.$store.state.Editable.data.parking.heading - newValue ) >= 0 && Math.abs( this.$store.state.Editable.data.parking.heading - newValue ) <= 0.1 )
|| this.headingFocussed || this.rotateFocussed) {
if (Number(this.$store.state.Editable.data.parking.heading) !== newValue) { if (Number(this.$store.state.Editable.data.parking.heading) !== newValue) {
this.$store.commit('SET_EDIT_PARKING_HEADING', newValue) this.$store.commit('SET_EDIT_PARKING_HEADING', newValue)
} }
if(this.calculate === 'Center') { if(this.calculate === 'Center') {
// we change center // we change center
const noseWheelLatLng = convert(this.noseWheel); const noseWheelLatLng = convert(this.$store.state.Editable.data.parking.nosecoords);
const parkingSize = this.validRadii.indexOf(this.$store.state.Editable.data.parking.radius); const parkingSize = this.validRadii.indexOf(this.$store.state.Editable.data.parking.radius);
if (parkingSize>=0) { if (parkingSize>=0) {
var reverseHeading = this.normalizeAngle(this.$store.state.Editable.data.parking.heading+180); var reverseHeading = this.normalizeAngle(this.$store.state.Editable.data.parking.heading+180);
@ -228,6 +280,7 @@
this.$store.commit('SET_EDIT_PARKING_COORDS', this.turfToLatLng(newCenter)); this.$store.commit('SET_EDIT_PARKING_COORDS', this.turfToLatLng(newCenter));
} }
} }
}
}, },
show (idx) { show (idx) {
this.$parent.$parent.$parent.$refs.editLayer.show(idx) this.$parent.$parent.$parent.$refs.editLayer.show(idx)
@ -244,14 +297,21 @@
latToTurf (turfPoint) { latToTurf (turfPoint) {
return [turfPoint.decimalLongitude, turfPoint.decimalLatitude]; return [turfPoint.decimalLongitude, turfPoint.decimalLatitude];
}, },
turfToLatLng: function (turfPoint) { turfToLatLng (turfPoint) {
return '' + turfPoint.geometry.coordinates[1].toFixed(6) + ',' + turfPoint.geometry.coordinates[0].toFixed(6); return '' + turfPoint.geometry.coordinates[1].toFixed(6) + ',' + turfPoint.geometry.coordinates[0].toFixed(6);
}, },
beautify (coordString) {
var a = coordString.split(' ');
if (a.length === 2) {
return '' + Number(a[0]).toFixed(6) + ' ' + Number(a[1]).toFixed(6);
} else {
return coordString;
}
},
calcWheel () { calcWheel () {
var centerCoords = convert(this.$store.state.Editable.data.parking.coords);
if(this.calculate === 'Nose Wheel') { if(this.calculate === 'Nose Wheel') {
// we change center // we change nosewheel
const centerLatLng = convert(this.$store.state.Editable.data.parking.coords); const centerLatLng = convert(this.beautify(this.$store.state.Editable.data.parking.coords));
const parkingSize = this.validRadii.indexOf(this.$store.state.Editable.data.parking.radius); const parkingSize = this.validRadii.indexOf(this.$store.state.Editable.data.parking.radius);
if (parkingSize>=0) { if (parkingSize>=0) {
var newNoseWheel = turf.destination(this.latToTurf(centerLatLng), this.validN2M[parkingSize]/1000, this.$store.state.Editable.data.parking.heading, turfOptions); var newNoseWheel = turf.destination(this.latToTurf(centerLatLng), this.validN2M[parkingSize]/1000, this.$store.state.Editable.data.parking.heading, turfOptions);
@ -260,10 +320,9 @@
} }
}, },
calcCenter () { calcCenter () {
var centerCoords = convert(this.$store.state.Editable.data.parking.coords);
if (this.calculate === 'Center') { if (this.calculate === 'Center') {
// we change center // we change center
const noseWheelLatLng = convert(this.$store.state.Editable.data.parking.nosecoords); const noseWheelLatLng = convert(this.beautify(this.$store.state.Editable.data.parking.nosecoords));
const parkingSize = this.validRadii.indexOf(this.$store.state.Editable.data.parking.radius); const parkingSize = this.validRadii.indexOf(this.$store.state.Editable.data.parking.radius);
if (parkingSize>=0) { if (parkingSize>=0) {
var newCenter = turf.destination(this.latToTurf(noseWheelLatLng), this.validN2M[parkingSize]/1000, this.$store.state.Editable.data.parking.heading - 180, turfOptions); var newCenter = turf.destination(this.latToTurf(noseWheelLatLng), this.validN2M[parkingSize]/1000, this.$store.state.Editable.data.parking.heading - 180, turfOptions);
@ -272,7 +331,7 @@
} }
} }
}, },
data () { return {calculateState: 'Nose Wheel', noseWheel: '', validRadii: [7.5, 10, 14, 18, 26, 33, 40], validN2M: [5, 5, 6, 10, 15, 24, 24] } }, data () { return {rotateFocussed: false, headingFocussed: false, coordFocussed: false, noseCoordFocussed: false, calculateState: 'Nose Wheel', noseWheel: '', validRadii: [7.5, 10, 14, 18, 26, 33, 40], validN2M: [5, 5, 6, 10, 15, 24, 24] } },
computed: { computed: {
editing: { editing: {
get: function () { get: function () {
@ -341,9 +400,9 @@
set: function (newValue) { set: function (newValue) {
this.calculateState = newValue; this.calculateState = newValue;
if (newValue==='Center') { if (newValue==='Center') {
this.calcWheel();
} else {
this.calcCenter(); this.calcCenter();
} else {
this.calcWheel();
} }
} }
}, },
@ -362,7 +421,9 @@
if( newValue.match(/,/g) !== null && newValue.match(/,/g).length === 3) { if( newValue.match(/,/g) !== null && newValue.match(/,/g).length === 3) {
newValue = newValue.replace(', ', ' ').replace(/,/g, '.').replace(' ', ', '); newValue = newValue.replace(', ', ' ').replace(/,/g, '.').replace(' ', ', ');
} }
if (this.coordFocussed) {
this.$store.commit('SET_EDIT_PARKING_COORDS', newValue) this.$store.commit('SET_EDIT_PARKING_COORDS', newValue)
}
this.calcWheel(); this.calcWheel();
} }
}, },
@ -370,6 +431,9 @@
// getter // getter
get: function () { get: function () {
if(this.$store.state.Editable.index!==undefined) { if(this.$store.state.Editable.index!==undefined) {
if(!this.$store.state.Editable.data.parking.nosecoords && this.calculate === 'Nose Wheel') {
this.calcWheel();
}
return this.$store.state.Editable.data.parking.nosecoords; return this.$store.state.Editable.data.parking.nosecoords;
} }
}, },
@ -381,14 +445,16 @@
if( newValue.match(/,/g) !== null && newValue.match(/,/g).length === 3) { if( newValue.match(/,/g) !== null && newValue.match(/,/g).length === 3) {
newValue = newValue.replace(', ', ' ').replace(/,/g, '.').replace(' ', ', '); newValue = newValue.replace(', ', ' ').replace(/,/g, '.').replace(' ', ', ');
} }
if (this.noseCoordFocussed) {
this.$store.commit('SET_EDIT_PARKING_NOSE_COORDS', newValue); this.$store.commit('SET_EDIT_PARKING_NOSE_COORDS', newValue);
}
this.calcCenter(); this.calcCenter();
} }
}, },
heading: { heading: {
// getter // getter
get: function () { get: function () {
return Number(this.$store.state.Editable.data.parking.heading) return this.$store.state.Editable.data.parking.heading
}, },
// setter // setter
set: function (newValue) { set: function (newValue) {

View File

@ -137,6 +137,7 @@ L.ParkingSpot = L.Circle.extend({
if(this.frontWheel!==undefined) { if(this.frontWheel!==undefined) {
this.frontWheel.setLatLng(this.turfToLatLng(frontWheelEnd)); this.frontWheel.setLatLng(this.turfToLatLng(frontWheelEnd));
return this.turfToLatLng(frontWheelEnd);
} }
} }
}, },
@ -220,7 +221,11 @@ L.ParkingSpot = L.Circle.extend({
this.direction.setStyle(style); this.direction.setStyle(style);
this.frontWheel.setStyle(style); this.frontWheel.setStyle(style);
} }
this.updateWheelPos(); var wheelPos = this.updateWheelPos();
if(wheelPos) {
store.default.dispatch('setParkingNoseCoords', wheelPos.lat.toFixed(6) + ' ' + wheelPos.lng.toFixed(6));
}
this.updateBox(); this.updateBox();
if(this.box) { if(this.box) {
this.box.setStyle(style); this.box.setStyle(style);
@ -297,7 +302,8 @@ L.ParkingSpot = L.Circle.extend({
console.debug("DragEnd Parking : ", event); console.debug("DragEnd Parking : ", event);
store.default.dispatch('setParking', event.target.options.attributes); store.default.dispatch('setParking', event.target.options.attributes);
store.default.dispatch('setParkingCoords', event.target.getLatLng().lat.toFixed(6) + ' ' + event.target.getLatLng().lng.toFixed(6)); store.default.dispatch('setParkingCoords', event.target.getLatLng().lat.toFixed(6) + ' ' + event.target.getLatLng().lng.toFixed(6));
event.target.updateWheelPos(); var wheelPos = event.target.updateWheelPos();
store.default.dispatch('setParkingNoseCoords', wheelPos.lat.toFixed(6) + ' ' + wheelPos.lng.toFixed(6));
event.target.updateBox(); event.target.updateBox();
/* /*
store.default.dispatch('setParkingHeading', this.options.attributes.heading) store.default.dispatch('setParkingHeading', this.options.attributes.heading)