Files
2025-07-21 17:30:50 +08:00
..
2025-07-21 17:30:50 +08:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

登录页
http://localhost:8080/ndplan/view/login.html

主页
http://localhost:8080/ndplan/view/index.jsp

http://152.136.214.62:9090/ndplan/view/index.jsp
http://152.136.214.62:9090/ndplan/view/index_3d.jsp
http://152.136.214.62:9090/ndplan/view/index_3d_mainleft.html
http://152.136.214.62:9090/ndplan/view/index_3d_mainnew.html

服务接口测试
http://localhost:8080/ndplan/gis/demo


服务地址:
http://152.136.214.62:8090/

http://www.supermapol.com/realspace/services/3D-suofeiya_church/rest/realspace
http://www.supermapol.com/realspace/services/3D-suofeiya_church/rest/realspace/scenes/%E6%9C%AA%E5%91%BD%E5%90%8D%E5%9C%BA%E6%99%AF.openrealspace

http://152.136.214.62:8090/iserver/services/3D-nd/rest/realspace/
http://152.136.214.62:8090/iserver/services/3D-nd/rest/realspace/scenes/nd.openrealspace

http://152.136.214.62:8090/iserver/services/3D-XinWuSuiDao/rest/realspace
http://152.136.214.62:8090/iserver/services/3D-XinWuSuiDao/rest/realspace/scenes/%E6%96%B0%E4%B9%8C%E9%9A%A7%E9%81%93.openrealspace
 



http://152.136.214.62:8090/iserver/services/3D-nd/rest/realspace

倾斜目标拾取 viewer.pickEvent
http://www.supermapol.com/realspace/services/3D-jinjiang/rest/realspace
http://www.supermapol.com/realspace/services/data-jinjiang/rest/data
http://192.168.198.21:33333/js/lib/supermap10/examples/editor.html#S3MTiles

let selecthandler = new Cesium.ScreenSpaceEventHandler(scene.canvas );
 selecthandler.setInputAction(e => {
    //点击回调事件
    scene.pick(e.position);
    let selectedLayer = scene.layers._selectedLayer;
    let id = selectedLayer.getSelection()[0];
    that.$http .get(dataconfig.dataurl + id + ".json").then(result => {
        let data=result.data
    }
}, Cesium.ScreenSpaceEventType.LEFT_CLICK);