如何在图上添加标注
2024-11-30 16:54
2024-11-30 16:54
向死而生
1、增加标注所在的动态图层public void loadElectMapText() { LabelLayer laber = new LabelLayer("Text", "Text"); mapControl
1.Map.Layers.Add(laber); }
2、查询标注所在图层的索引 public int GetLayerByName(string strLayerName) { for (int i = 0; i < mapControl
1.Map.Layers.Count; i++) { if (mapControl
1.Map.Layers[i].Name == strLayerName) return i; } return -1; }
3、自动添加标注 public void DisplayText(string strLayerText,string property,bool blShow) { //自动标注 int nTextLayer = GetLayerByName("Text"); if (nTextLayer < 0) return; LabelLayer layer = (LabelLayer)mapControl
1.Map.Layers[nTextLayer]; LabelSource source = layer.Sources[strLayerText]; if (source != null) //已经构造了标注,则不再构建。 return; source = new LabelSource(MapInfo.Engine.Session.Current.Catalog.GetTable(strLayerText)); if (source == null) return; source.DefaultLabelProperties.Caption =property;//标注用到的那个字段名称 //source.DefaultLabelProperties.Style.Font.Name = "宋体";//字体 source.DefaultLabelProperties.Style.Font.Size = 9;//大小 source.DefaultLabelProperties.Layout.Alignment = MapInfo.Text.Alignment.CenterCenter;//标注显示的位置 // source.DefaultLabelProperties.Layout.Offset = 7;//偏移量 source.DefaultLabelProperties.Style.Font.ForeColor = System.Drawing.Color.Red;//标注字颜色 layer.DefaultLabelProperties.Style.Font.TextEffect=MapInfo.Styles.TextEffect.Box;//标注背景,Box为方框,Halo为光晕 // layer.DefaultLabelProperties.Style.Font.BackColor=System.Drawing.Color.Yellow;//方框或者光晕的颜色 //layer.DefaultLabelProperties.Style.Font.Shadow = true;//显示阴影 layer.Sources.Append(source); layer.Enabled = blShow;//layer.Enable要设置为true 否则不可见 }
2024-11-30 18:13:06