修改 cesium地图

用户中台0622
853931625@qq.com 2026-07-28 10:32:04 +08:00
parent 0df3f3cefd
commit df4ced641f
4 changed files with 4 additions and 3 deletions

View File

@ -49,7 +49,7 @@ module.exports = {
// 开发服务 // 开发服务
server: { server: {
// 监听端口号 // 监听端口号
port: "8089", port: "8099",
// 服务地址 // 服务地址
host: "127.0.0.1", host: "127.0.0.1",
// 是否自动打开浏览器 // 是否自动打开浏览器

View File

@ -32,7 +32,7 @@
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"relation-graph": "^2.2.11", "relation-graph": "^2.2.11",
"zy-react-library": "^1.2.3" "zy-react-library": "^1.3.26"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^5.4.1", "@antfu/eslint-config": "^5.4.1",

View File

@ -366,7 +366,7 @@ function Update(props) {
{ {
name: "map", name: "map",
customizeRender: true, customizeRender: true,
render: <Map />, render: <Map type="cesium" />,
span: 24, span: 24,
}, },
{ {

View File

@ -196,6 +196,7 @@ function List(props) {
longitude={selectedLng} longitude={selectedLng}
onClose={() => setVisible(false)} onClose={() => setVisible(false)}
onConfirm={handleConfirm} onConfirm={handleConfirm}
type="cesium"
/> />
</Page> </Page>
); );