1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
Cesium.ITwinPlatform.defaultShareKey = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpVHdpbklkIjoiMDRiYTcyNWYtZjNjMC00ZjMwLTgwMTQtYTQ0ODhjYmQ2MTJkIiwiaWQiOiJkNzNhODQzMC1iZWNiLTQxMTQtYThjYy04NmIxZGMzNGYzMjUiLCJleHAiOjE3NzcwNTU3Njl9.ySsHT7VcVZDTPBhrnzqRIQMaLwjD6p3mPyGCHUI0awA";
const iTwinId = "04ba725f-f3c0-4f30-8014-a4488cbd612d";
const viewer = new Cesium.Viewer("cesiumContainer", { geocoder: false, homeButton: false, sceneModePicker: false, navigationHelpButton: false, navigationInstructionsInitiallyVisible: false, animation: false, timeline: false, fullscreenButton: false, skyBox: false, shouldAnimate: true, baseLayerPicker: true, terrain: Cesium.Terrain.fromWorldTerrain(), });
viewer.baseLayerPicker.viewModel.selectedImagery = viewer.baseLayerPicker.viewModel.imageryProviderViewModels[2];
const birdsEyeView = { destination: new Cesium.Cartesian3( -1525359.4318772827, 6191643.528984093, 148851.5321709012 ), orientation: new Cesium.HeadingPitchRoll( 0.16657338935967037, -0.7943050121851765, 6.283180723449992 ), duration: 0, easingFunction: Cesium.EasingFunction.LINEAR_NONE, }; viewer.scene.camera.flyTo(birdsEyeView);
const points = await Cesium.ITwinData.loadGeospatialFeatures( iTwinId, "2380dc1b-1dac-4709-aa5c-f6cb38c4e9f5" ); const lines = await Cesium.ITwinData.loadGeospatialFeatures( iTwinId, "613d2310-4d01-43b7-bc92-873a2ca4a4a0" ); const areas = await Cesium.ITwinData.loadGeospatialFeatures( iTwinId, "93e7ef51-5210-49f2-92a3-c7f6685e102f" );
const pinBuilder = new Cesium.PinBuilder(); points.entities.values.forEach(async (entity) => { const styleByType = { Tree: { color: Cesium.Color.GREEN, icon: "park2" }, Lamp_post: { color: Cesium.Color.WHITE, icon: "lighthouse" }, Traffic_light: { color: Cesium.Color.CRIMSON, icon: "circle-stroked" }, Arrow_Marking: { color: Cesium.Color.YELLOW, icon: "car" }, Road_Sign: { color: Cesium.Color.ORANGE, icon: "triangle" }, }; const type = entity.properties.type?.getValue(); if (Cesium.defined(type) && Cesium.defined(styleByType[type])) { const { color, icon } = styleByType[type]; const canvas = await pinBuilder.fromMakiIconId(icon, color, 48); entity.billboard.image = canvas.toDataURL(); entity.billboard.verticalOrigin = Cesium.VerticalOrigin.BOTTOM; } }); lines.entities.values.forEach((entity) => { const lineColorsByType = { Contours: Cesium.Color.CRIMSON, Lane_Marking: Cesium.Color.CYAN, Kerb: Cesium.Color.BLUEVIOLET, Chevron_marking: Cesium.Color.DARKORANGE, Turning_pocket: Cesium.Color.DEEPPINK, Yellow_Box: Cesium.Color.GOLD, }; const type = entity.properties.type?.getValue(); if (Cesium.defined(type) && Cesium.defined(lineColorsByType[type])) { entity.polyline.material = lineColorsByType[type]; } });
viewer.dataSources.add(points); viewer.dataSources.add(lines); viewer.dataSources.add(areas);
const realityMeshId = "62e4432d-621d-489a-87ff-1fc56a2b5369"; const realityMesh = await Cesium.ITwinData.createTilesetForRealityDataId( iTwinId, realityMeshId ); viewer.scene.primitives.add(realityMesh); const pointcloudId = "ebf2ee74-f0de-4cd6-a311-19a169c55fdc"; const pointcloud = await Cesium.ITwinData.createTilesetForRealityDataId( iTwinId, pointcloudId );
pointcloud.maximumScreenSpaceError = 1; pointcloud.pointCloudShading.attenuation = true; pointcloud.style = new Cesium.Cesium3DTileStyle({ pointSize: 5.0, }); pointcloud.show = false; viewer.scene.primitives.add(pointcloud);
Sandcastle.addToolbarButton( "切换显示点", () => (points.show = !points.show), "layers" ); Sandcastle.addToolbarButton( "切换显示线", () => (lines.show = !lines.show), "layers" ); Sandcastle.addToolbarButton( "切换显示区域", () => (areas.show = !areas.show), "layers" ); Sandcastle.addToolbarButton( "切换显示现实(实景)网格", () => (realityMesh.show = !realityMesh.show), "layers" ); Sandcastle.addToolbarButton( "切换显示点云", () => (pointcloud.show = !pointcloud.show), "layers" );
Sandcastle.addToolbarButton("鸟瞰视角", () => { viewer.scene.camera.flyTo(birdsEyeView); }); Sandcastle.addToolbarButton("缩放至点云", () => { pointcloud.show = true; viewer.zoomTo(pointcloud); });
|