图片上怎么动态显示标注
1个回答
展开全部
1、增加标注所在的动态图层public void loadElectMapText() { LabelLayer laber = new LabelLayer("Text", "Text"); mapControl1.Map.Layers.Add(laber); }2、查询标注所在图层的索引 public int GetLayerByName(string strLayerName) { for (int i = 0; i < mapControl1.Map.Layers.Count; i++) { if (mapControl1.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)mapControl1.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 否则不可见 }
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |