sbjw
2025-08-13 7e6f1330b41769f638b6699e6104aa82f1794f03
细节修复
15 files modified
40 ■■■■■ changed files
config-overrides.js 9 ●●●● patch | view | raw | blame | history
package.json 3 ●●●● patch | view | raw | blame | history
src/example/ExampleBlcPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleBpPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleCustomToolbarPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleDefaultSelectPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleDrawPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleDynamicBlcPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleFlyPage.js 4 ●●●● patch | view | raw | blame | history
src/example/ExampleFwyPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleHideToolBarPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleI18nPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleLayerPage.js 2 ●●● patch | view | raw | blame | history
src/example/ExamplePage.js 2 ●●● patch | view | raw | blame | history
src/example/ExampleToolsPage.js 2 ●●● patch | view | raw | blame | history
config-overrides.js
@@ -5,10 +5,15 @@
        new CopyPlugin({
            patterns: [
                {
                    from: "node_modules/iclient3d-plot-diy/assets/project3d", // 你的文件路径
                    to: "project3d", // 输出到 public 目录
                    from: "node_modules/iclient3d-plot-diy/assets/project3d",
                    to: "project3d", // 输出到 project3d 目录
                    toType: 'dir'
                },
                {
                    from: "node_modules/iclient3d-plot-diy-attachment/assets/project3d/Build",
                    to: "project3d/Build", // 输出到 project3d/Build 目录
                    toType: 'dir'
                }
            ],
        })
    );
package.json
@@ -18,7 +18,8 @@
        "@ant-design/icons": "^4.0.0",
        "antd": "^4.24.16",
        "echarts": "^5.6.0",
        "iclient3d-plot-diy": "^1.0.6",
        "iclient3d-plot-diy": "^1.0.10",
        "iclient3d-plot-diy-attachment": "^1.0.1",
        "jquery": "^3.7.1",
        "react-draggable": "^3.3.2",
        "react-router-dom": "^5.3.4",
src/example/ExampleBlcPage.js
@@ -1,6 +1,6 @@
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
src/example/ExampleBpPage.js
@@ -1,6 +1,6 @@
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";
src/example/ExampleCustomToolbarPage.js
@@ -1,7 +1,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";
src/example/ExampleDefaultSelectPage.js
@@ -1,6 +1,6 @@
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 {
src/example/ExampleDrawPage.js
@@ -1,6 +1,6 @@
import React, {Component} from 'react'
import './ExampleDrawPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import {Button} from "antd";
src/example/ExampleDynamicBlcPage.js
@@ -1,6 +1,6 @@
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 {
src/example/ExampleFlyPage.js
@@ -1,8 +1,8 @@
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;
src/example/ExampleFwyPage.js
@@ -1,6 +1,6 @@
import React, {Component} from 'react'
import './ExampleFwyPage.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
import {Button} from "antd";
;
src/example/ExampleHideToolBarPage.js
@@ -1,6 +1,6 @@
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";
src/example/ExampleI18nPage.js
@@ -1,7 +1,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";
src/example/ExampleLayerPage.js
@@ -1,7 +1,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";
src/example/ExamplePage.js
@@ -3,7 +3,7 @@
import {NavLink} from "react-router-dom";
import "./ExampleLayerPage.css";
import {Button, Input} from "antd";
import {updateLanguage} from "../iclient3d-plot-diy";
import {updateLanguage} from "iclient3d-plot-diy";
;
src/example/ExampleToolsPage.js
@@ -1,6 +1,6 @@
import React, {Component, PureComponent} from 'react'
import './CommonExample.css'
import {GIS} from "../iclient3d-plot-diy";
import {GIS} from "iclient3d-plot-diy";
;
import './ExampleLayerPage.css'