ArcGIS for javascript4.13 加载倾斜摄影三维数据

先看效果图(效果会受到上传图片影响)实际效果比较好。具体效果主要收到处理数据方面的影响:数据处理的好,展示效果会好。

主要代码:两部分

      1、添加IntegratedMeshLayer——"esri/layers/IntegratedMeshLayer"

2、第二部分:

         

第二种类方法加载倾斜webscene

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="https://js.arcgis.com/4.16/esri/themes/light/main.css">
    <script src="https://js.arcgis.com/4.16/"></script>
    <style>
        html,
        body {
            width: 100%;
            height: 100%;
            margin: 0;
        }
        #map {
            width: 100%;
            height: 100%;
        }
    </style>
</head>
<body>
    <div id="map"></div>
</body>
<script>
    require(["esri/Map",
            "esri/views/SceneView",
            "esri/Camera",
            "esri/WebScene",
            "esri/config"
            ], function (Map,
                SceneView,
                Camera,
                WebScene,
                esriConfig
            ) {
                esriConfig.portalUrl = "portal域名地址";
                var scene = new WebScene({
                    portalItem: {
                        id: "websceneID"
                    }
                });
                var camera = new Camera({
                    position: {
                        x: 445468.2645130789,
                        y: 3733403.2616965305,
                        z: 900,
                        spatialReference: {
                            wkid: 4547 //坐标系
                        }
                    },
                    tilt: 45
                })
                var view = new SceneView({
                        map: scene,
                        container: "map",
                        camera: camera
                })
            })
</script>

</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值