首页 / 浏览问题 / 三维GIS / 问题详情
Primitive 对象能加上文字标识吗
26EXP 2018年05月10日
Primitive 对象可否类似entity对象的lebel,增加文字标识?

1个回答

也是有的,如下:

var labels = scene.primitives.add(new Cesium.LabelCollection());
labels.add({
  position : new Cesium.Cartesian3(1.0, 2.0, 3.0),
  text : 'A label'
});
labels.add({
  position : new Cesium.Cartesian3(4.0, 5.0, 6.0),
  text : 'Another label'
});
5,985EXP 2018年05月10日
好的,谢谢
...