获取或设置激活的地图几何对象的ID。
命名空间:
SuperMap.UI程序集: SuperMap.Layout (in SuperMap.Layout)
版本: dll
语法
C# |
---|
public int ActiveGeoMapID { get; set; } |
示例
以下代码示范了如何运用该接口锁定地图和解锁地图。
下面代码中在对地图进行放大操作时需要用户的交互操作,用户手动放大地图后,再解锁地图。
CopyC#
private void TestActiveGeoMapID() { MapLayoutControl mapLayoutControl = new MapLayoutControl(); //锁定地图 mapLayoutControl1.ActiveGeoMapID = 1; //对地图进行放大操作 mapLayoutControl1.MapAction = SuperMap.UI.Action.ZoomIn; //解锁地图 mapLayoutControl1.ActiveGeoMapID = 1; }