sbjw
2025-12-04 ab43548757dee86855061b2d1d458c7db5e6b879
public/example/ExampleFlyPage.md
@@ -4,11 +4,10 @@
```jsx
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS, Bp} from "iclient3d-plot-diy";
import {interval, take} from "rxjs";
import Bp from "../utils/Bp";
const {Cesium} = window;
const Cesium = window['Cesium'];
export default class ExampleFlyPage extends Component {
@@ -21,7 +20,7 @@
    componentDidMount() {
        fetch('./example/ExampleBpPage.md')
        fetch('./example/ExampleFlyPage.md')
            .then(response => response.text())
            .then(mdText => {
                this.setState({htmlString: window.marked.parse(mdText)});
@@ -73,7 +72,7 @@
            return {
                lon: Cesium.Math.toDegrees(car.longitude),
                lat: Cesium.Math.toDegrees(car.latitude),
                height: car.height
                height: 5000
            };
        });
@@ -86,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]);
@@ -95,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)
            });
        });