|
@@ -774,7 +774,7 @@ export function polygonContent(airspaceInfo, type=3) {
|
|
|
|
|
|
|
|
let content = [res.join('、')]
|
|
let content = [res.join('、')]
|
|
|
content.push(`${airspaceInfo.points.length}点连线范围内`)
|
|
content.push(`${airspaceInfo.points.length}点连线范围内`)
|
|
|
- content.push(`, ${getHeight(airspaceInfo.altitude, airspaceInfo.unit, type)}`)
|
|
|
|
|
|
|
+ content.push(`,${getHeight(airspaceInfo.altitude, airspaceInfo.unit, type)}`)
|
|
|
if(isSafeString(airspaceInfo.note)) {
|
|
if(isSafeString(airspaceInfo.note)) {
|
|
|
content.push(`,备注:${airspaceInfo.note}`)
|
|
content.push(`,备注:${airspaceInfo.note}`)
|
|
|
}
|
|
}
|
|
@@ -789,7 +789,8 @@ export function polygonContent(airspaceInfo, type=3) {
|
|
|
c += `(E${obj.lng}, N${obj.lat})`
|
|
c += `(E${obj.lng}, N${obj.lat})`
|
|
|
content.push(c)
|
|
content.push(c)
|
|
|
}
|
|
}
|
|
|
- content = content.join('、') + `${length}点连线范围内,${airspaceInfo.heightStandard}${airspaceInfo.height}米`
|
|
|
|
|
|
|
+ content = content.join('、') + `${length}点连线范围内`
|
|
|
|
|
+ content += `,${getHeight(airspaceInfo.height, airspaceInfo.heightStandard, type}`
|
|
|
if (airspaceInfo.note)
|
|
if (airspaceInfo.note)
|
|
|
content = `${content},备注:${airspaceInfo.note}`
|
|
content = `${content},备注:${airspaceInfo.note}`
|
|
|
return content;
|
|
return content;
|