首页 / 浏览问题 / WebGIS / 问题详情
请问如何实现在前端获取几何对象的内点?
78EXP 2021年12月27日
目前通过数据查询可以前端获得面对象的节点信息,也可以构建entity,请问如何获得面对象的几何中心或内点?

1个回答

你好,获取面中心点可以参考以下代码:

var pyPositions = polygon.polygon.hierarchy.getValue(Cesium.JulianDate.now()).positions;

 //中心点

var pCenter = Cesium.BoundingSphere.fromPoints(polyPositions).center;
6,087EXP 2021年12月27日
...