From 503c7dec0bfb14280aef86975cd488fe06088842 Mon Sep 17 00:00:00 2001
From: sbjw <sbjw.happy@163.com>
Date: Fri, 27 Feb 2026 14:37:55 +0000
Subject: [PATCH] * 1.0.42 ``` 1、修复2D和2.5D下,通视分析的无法校准的问题 2、修复几个面板排斥的功能。 3、去除比例尺的单位。(比例尺不应该存在单位) ```
---
public/example/ExampleFlyPage.md | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/public/example/ExampleFlyPage.md b/public/example/ExampleFlyPage.md
index f2d45b0..66dff62 100644
--- a/public/example/ExampleFlyPage.md
+++ b/public/example/ExampleFlyPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component} from 'react'
import './ExampleDrawPage.css'
-import {GIS, Bp} from "../iclient3d-plot-diy";
+import {GIS, Bp} from "iclient3d-plot-diy";
import {interval, take} from "rxjs";
const Cesium = window['Cesium'];
@@ -85,7 +85,8 @@
"useModify": false,
"lon": arr[0].lon,
"lat": arr[0].lat,
- "height": arr[0].height || 0,
+ xz: true,
+ "height": arr[0].height,
points: []
}
this.mapFunction.mapApiService.showDrawDatas([option]);
@@ -94,6 +95,7 @@
this.mapFunction.mapApiService.updateDraw("ccccc", {
lon: arr[number].lon,
lat: arr[number].lat,
+ height: arr[number].height,
points: arr.slice(0, number)
});
});
--
Gitblit v1.9.3