首页 / 浏览问题 / 三维GIS / 问题详情
entity默认视角定位
6EXP 2018年11月08日

请问一下cameraClicked.raiseEvent(this);这个方法怎样可以默认调用啊?我想点击地图上的标签就触发这个方法

1个回答

您好,通过设置viewer.trackedEntity就可以设置当前相机跟踪的实体对象。
5,985EXP 2018年11月08日
var entity=new Cesium.Entity({
	polygon:  {
		hierarchy : Cesium.Cartesian3.fromDegreesArray(arr),
		height : height,//拉升高度
		extrudedHeight:extrudedHeight,//底部高度
		material : Cesium.Color.RED.withAlpha(0.5),
		outline : true,
		outlineColor : Cesium.Color.BLACK
	},
	show:true,
	name :entityName,
	description: des
});
viewer.entities.add(entity);
viewer.trackedEntity =entity;

怎样用啊?没有效果的,视角都不会变动

...