图片上怎么动态显示标注

 我来答
百度网友ca5e28e
推荐于2016-08-25 · TA获得超过7.7万个赞
知道大有可为答主
回答量:1.1万
采纳率:45%
帮助的人:6219万
展开全部
  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 否则不可见 }
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式