|
@@ -11,6 +11,7 @@ export const ThreeGridClass = {
|
|
|
this.layerColors = this.layerColors || [new THREE.Color(0xff0000), new THREE.Color(0x00ff00), new THREE.Color(0x0000ff)] // 自定义每层颜色
|
|
|
this.gridEnabled = options.gridEnabled;
|
|
|
this.netEnabled = options.netEnabled;
|
|
|
+ this.opacity = options.opacity;
|
|
|
this.mesh = null;
|
|
|
this._camera = null;
|
|
|
this.currentLayer = 0;
|
|
@@ -83,15 +84,15 @@ export const ThreeGridClass = {
|
|
|
|
|
|
createInstancedMesh() {
|
|
|
//const geometry = new THREE.BoxGeometry(this.layerHeight, this.size, this.size);
|
|
|
- const geometry = new THREE.BoxGeometry(7.73, 7.73, 7.73);
|
|
|
+ const geometry = new THREE.BoxGeometry(this.size, this.size, this.size);
|
|
|
geometry.computeVertexNormals(); // 计算并更新顶点法线
|
|
|
const material = new THREE.MeshPhongMaterial({
|
|
|
transparent: true,
|
|
|
- opacity: 0.5,
|
|
|
+ opacity: this.opacity,
|
|
|
depthTest:true,
|
|
|
- side:THREE.DoubleSide
|
|
|
+ side:THREE.DoubleSide,
|
|
|
+ depthWrite: false // 关闭深度写入
|
|
|
});
|
|
|
- debugger
|
|
|
// 修改材质支持 instanceColor
|
|
|
material.onBeforeCompile = (shader) => {
|
|
|
shader.vertexShader = `
|
|
@@ -119,9 +120,9 @@ export const ThreeGridClass = {
|
|
|
`
|
|
|
);
|
|
|
};
|
|
|
- const xCount = Math.floor((this.extent.maxX - this.extent.minX) / this.size);
|
|
|
- const yCount = Math.floor((this.extent.maxY - this.extent.minY) / this.size);
|
|
|
- const zCount = Math.floor(this.height / this.layerHeight);
|
|
|
+ const xCount = Math.ceil((this.extent.maxX - this.extent.minX) / this.size);
|
|
|
+ const yCount = Math.ceil((this.extent.maxY - this.extent.minY) / this.size);
|
|
|
+ const zCount = Math.ceil(this.height / this.layerHeight);
|
|
|
const count = xCount * yCount * zCount;
|
|
|
this.mesh = new THREE.InstancedMesh(geometry, material, count);
|
|
|
// 为实例添加颜色属性
|
|
@@ -130,50 +131,48 @@ export const ThreeGridClass = {
|
|
|
const color = new THREE.Color();
|
|
|
let index = 0;
|
|
|
|
|
|
- // for (let i = 0; i < xCount; i++) {
|
|
|
- // for (let j = 0; j < yCount; j++) {
|
|
|
- // for (let k = 0; k < zCount; k++) {
|
|
|
- // const worldX = this.extent.minX + i * this.size + this.size / 2;
|
|
|
- // const worldY = this.extent.minY + j * this.size + this.size / 2;
|
|
|
- // const worldZ = k * this.layerHeight + this.layerHeight / 2;
|
|
|
- // debugger
|
|
|
- // let renderPos = [];
|
|
|
- // this.webgl.toRenderCoordinates(this.view, [worldX, worldY, worldZ], 0, this.view.spatialReference, renderPos, 0, 1);
|
|
|
- //
|
|
|
- // dummy.position.set(renderPos[0], renderPos[1], renderPos[2]);
|
|
|
- // dummy.updateMatrix();
|
|
|
- // this.mesh.setMatrixAt(index, dummy.matrix);
|
|
|
- //
|
|
|
- // // 分配颜色:由层数计算从红到绿的渐变
|
|
|
- // const layerFraction = k / (zCount - 1); // 当前层在总层数中的比例
|
|
|
- // color.setHSL(layerFraction * 0.33, 1, 0.5); // HSL中的H从0(红)到0.33(绿)
|
|
|
- //
|
|
|
- // instanceColors[index * 3] = color.r;
|
|
|
- // instanceColors[index * 3 + 1] = color.g;
|
|
|
- // instanceColors[index * 3 + 2] = color.b;
|
|
|
- //
|
|
|
- // index++;
|
|
|
- // }
|
|
|
- // }
|
|
|
- // }
|
|
|
-
|
|
|
- for(let i=0;i<Path.ypPath.length;i++){
|
|
|
- let renderPos = [];
|
|
|
+ for (let i = 0; i < xCount; i++) {
|
|
|
+ for (let j = 0; j < yCount; j++) {
|
|
|
+ for (let k = 0; k < zCount; k++) {
|
|
|
+ const worldX = this.extent.minX + i * this.size + this.size / 2;
|
|
|
+ const worldY = this.extent.minY + j * this.size + this.size / 2;
|
|
|
+ const worldZ = k * this.layerHeight + this.layerHeight / 2;
|
|
|
+ let renderPos = [];
|
|
|
+ this.webgl.toRenderCoordinates(this.view, [worldX, worldY, worldZ], 0, this.view.spatialReference, renderPos, 0, 1);
|
|
|
|
|
|
- this.webgl.toRenderCoordinates(this.view, [Path.ypPath[i][0] * 7.73,Path.ypPath[i][1] * 7.73,Path.ypPath[i][2] * 7.73], 0, this.view.spatialReference, renderPos, 0, 1);
|
|
|
+ dummy.position.set(renderPos[0], renderPos[1], renderPos[2]);
|
|
|
+ dummy.updateMatrix();
|
|
|
+ this.mesh.setMatrixAt(index, dummy.matrix);
|
|
|
|
|
|
- dummy.position.set(renderPos[0], renderPos[1], renderPos[2]);
|
|
|
- dummy.updateMatrix();
|
|
|
- this.mesh.setMatrixAt(index, dummy.matrix);
|
|
|
+ // 分配颜色:由层数计算从红到绿的渐变
|
|
|
+ const layerFraction = k / (zCount); // 当前层在总层数中的比例
|
|
|
+ color.setHSL(layerFraction * 0.33, 1, 0.5); // HSL中的H从0(红)到0.33(绿)
|
|
|
|
|
|
- debugger
|
|
|
- instanceColors[index * 3] = 0;
|
|
|
- instanceColors[index * 3 + 1] = 1;
|
|
|
- instanceColors[index * 3 + 2] = 0;
|
|
|
+ instanceColors[index * 3] = color.r;
|
|
|
+ instanceColors[index * 3 + 1] = color.g;
|
|
|
+ instanceColors[index * 3 + 2] = color.b;
|
|
|
|
|
|
- index++;
|
|
|
+ index++;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+ // for(let i=0;i<Path.ypPath.length;i++){
|
|
|
+ // let renderPos = [];
|
|
|
+ //
|
|
|
+ // this.webgl.toRenderCoordinates(this.view, [Path.ypPath[i][0] * 7.73,Path.ypPath[i][1] * 7.73,Path.ypPath[i][2] * 7.73], 0, this.view.spatialReference, renderPos, 0, 1);
|
|
|
+ //
|
|
|
+ // dummy.position.set(renderPos[0], renderPos[1], renderPos[2]);
|
|
|
+ // dummy.updateMatrix();
|
|
|
+ // this.mesh.setMatrixAt(index, dummy.matrix);
|
|
|
+ //
|
|
|
+ // instanceColors[index * 3] = 0;
|
|
|
+ // instanceColors[index * 3 + 1] = 1;
|
|
|
+ // instanceColors[index * 3 + 2] = 0;
|
|
|
+ //
|
|
|
+ // index++;
|
|
|
+ // }
|
|
|
+
|
|
|
|
|
|
// 为实例化的网格设置颜色
|
|
|
geometry.setAttribute('instanceColor', new THREE.InstancedBufferAttribute(instanceColors, 3));
|
|
@@ -183,7 +182,7 @@ export const ThreeGridClass = {
|
|
|
|
|
|
// 将网格和边框分别添加到场景中
|
|
|
this.scene.add(this.mesh);
|
|
|
- this.scene.add(this.mergedLineMesh); // 添加边框线
|
|
|
+ // this.scene.add(this.mergedLineMesh); // 添加边框线
|
|
|
|
|
|
// 网格的光照
|
|
|
const ambientLight = new THREE.AmbientLight(0xffffff, 0.5);
|
|
@@ -228,9 +227,10 @@ export const ThreeGridClass = {
|
|
|
);
|
|
|
const lineMaterial = new THREE.LineBasicMaterial({
|
|
|
color: 0xffffff,
|
|
|
- opacity: 0.5,
|
|
|
+ opacity: 0.3,
|
|
|
linewidth: 1,
|
|
|
- transparent: true,
|
|
|
+ transparent: true
|
|
|
+
|
|
|
});
|
|
|
const lines = new THREE.LineSegments(lineGeometry, lineMaterial);
|
|
|
this.scene.add(lines);
|
|
@@ -280,9 +280,9 @@ export const ThreeGridClass = {
|
|
|
this.currentLayer = (this.currentLayer + 1) % Math.floor(this.height / this.layerHeight); // 递增层数并循环
|
|
|
|
|
|
const dummy = new THREE.Object3D();
|
|
|
- const xCount = Math.floor((this.extent.maxX - this.extent.minX) / this.size);
|
|
|
- const yCount = Math.floor((this.extent.maxY - this.extent.minY) / this.size);
|
|
|
- const zCount = Math.floor(this.height / this.layerHeight);
|
|
|
+ const xCount = Math.ceil((this.extent.maxX - this.extent.minX) / this.size);
|
|
|
+ const yCount = Math.ceil((this.extent.maxY - this.extent.minY) / this.size);
|
|
|
+ const zCount = Math.ceil(this.height / this.layerHeight);
|
|
|
|
|
|
let index = 0;
|
|
|
const linePositions = []; // 用于存储当前层级的边框线段
|