sbjw
2025-08-27 e74fe336f8c6c434b1cf6c0e3378c4e14f9d58d5
更新md文件
17 files modified
43 ■■■■ changed files
package.json 3 ●●●● patch | view | raw | blame | history
public/example/ExampleBhPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleBlcPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleBpPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleCustomToolbarPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleDefaultSelectPage.md 4 ●●●● patch | view | raw | blame | history
public/example/ExampleDrawPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleDynamicBlcPage.md 4 ●●●● patch | view | raw | blame | history
public/example/ExampleFlyPage.md 6 ●●●● patch | view | raw | blame | history
public/example/ExampleFwyPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleHideToolBarPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleI18nPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleLayerPage.md 2 ●●● patch | view | raw | blame | history
public/example/ExampleToolsPage.md 2 ●●● patch | view | raw | blame | history
src/example/ExampleDefaultSelectPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleDynamicBlcPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleFlyPage.js 2 ●●● patch | view | raw | blame | history
package.json
@@ -4,7 +4,8 @@
    "scripts": {
        "start": "react-app-rewired start",
        "build": "react-app-rewired build",
        "update2": "pnpm update iclient3d-plot-diy --no-save --registry https://registry.npmjs.org"
        "update2": "pnpm update iclient3d-plot-diy --no-save --registry https://registry.npmjs.org",
        "code-to-md": "node extract-code-to-md.js"
    },
    "keywords": [],
    "author": "sbjw1234",
public/example/ExampleBhPage.md
@@ -5,7 +5,7 @@
import React, {Component} from 'react'
import './ExamplePage.css'
import "./ExampleBhPage.css";
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
import {Button} from "antd";
public/example/ExampleBlcPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
public/example/ExampleBpPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {Bp, GIS} from "../iclient3d-plot-diy";
import {Bp, GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
public/example/ExampleCustomToolbarPage.md
@@ -5,7 +5,7 @@
import React, {Component} from 'react'
import './ExamplePage.css'
import "./CommonExample.css";
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import ProfileTool from "./profile/ProfileTool";
public/example/ExampleDefaultSelectPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component} from 'react'
import './ExampleFwyPage.css'
import {Bp, GIS} from "../iclient3d-plot-diy";
import {Bp, GIS} from "iclient3d-plot-diy";
import {Button} from "antd";
export default class ExampleDefaultSelectPage extends Component {
@@ -55,7 +55,7 @@
    componentDidMount() {
        this.showData();
        fetch('./example/ExampleFwyPage.md')
        fetch('./example/ExampleDefaultSelectPage.md')
            .then(response => response.text())
            .then(mdText => {
                this.setState({htmlString: window.marked.parse(mdText)});
public/example/ExampleDrawPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
public/example/ExampleDynamicBlcPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
export default class ExampleDynamicDlcPage extends Component {
@@ -31,7 +31,7 @@
    componentDidMount() {
        fetch('./example/ExampleBlcPage.md')
        fetch('./example/ExampleDynamicDlcPage.md')
            .then(response => response.text())
            .then(mdText => {
                this.setState({htmlString: window.marked.parse(mdText)});
public/example/ExampleFlyPage.md
@@ -4,9 +4,9 @@
```jsx
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
import {interval, take} from "rxjs";
import Bp from "../utils/Bp";
import {Bp} from "iclient3d-plot-diy";
const {Cesium} = window;
@@ -21,7 +21,7 @@
    componentDidMount() {
        fetch('./example/ExampleBpPage.md')
        fetch('./example/ExampleFlyPage.md')
            .then(response => response.text())
            .then(mdText => {
                this.setState({htmlString: window.marked.parse(mdText)});
public/example/ExampleFwyPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component} from 'react'
import './ExampleFwyPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
import {Button} from "antd";
;
public/example/ExampleHideToolBarPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component, PureComponent} from 'react'
import './CommonExample.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
public/example/ExampleI18nPage.md
@@ -5,7 +5,7 @@
import React, {Component} from 'react'
import './ExamplePage.css'
import "./CommonExample.css";
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
public/example/ExampleLayerPage.md
@@ -5,7 +5,7 @@
import React, {Component} from 'react'
import './CommonExample.css'
import './ExampleLayerPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
public/example/ExampleToolsPage.md
@@ -4,7 +4,7 @@
```jsx
import React, {Component, PureComponent} from 'react'
import './CommonExample.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import './ExampleLayerPage.css'
src/example/ExampleDefaultSelectPage.js
@@ -51,7 +51,7 @@
    componentDidMount() {
        this.showData();
        fetch('./example/ExampleFwyPage.md')
        fetch('./example/ExampleDefaultSelectPage.md')
            .then(response => response.text())
            .then(mdText => {
                this.setState({htmlString: window.marked.parse(mdText)});
src/example/ExampleDynamicBlcPage.js
@@ -27,7 +27,7 @@
    componentDidMount() {
        fetch('./example/ExampleBlcPage.md')
        fetch('./example/ExampleDynamicDlcPage.md')
            .then(response => response.text())
            .then(mdText => {
                this.setState({htmlString: window.marked.parse(mdText)});
src/example/ExampleFlyPage.js
@@ -17,7 +17,7 @@
    componentDidMount() {
        fetch('./example/ExampleBpPage.md')
        fetch('./example/ExampleFlyPage.md')
            .then(response => response.text())
            .then(mdText => {
                this.setState({htmlString: window.marked.parse(mdText)});