using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.PluginServiceInterface { public interface ICameraPoint { /// /// 添加照片方位角 /// /// void AddCameraPoint(object pCameraParams); /// /// 改变照片方位角 /// /// void ChangedPointSymbol(string elementName, bool IsCheck = false); } }