前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >从MapX到MapXtreme2004[4]-标注AutoLabel

从MapX到MapXtreme2004[4]-标注AutoLabel

作者头像
用户1075292
发布2018-01-23 11:02:59
6180
发布2018-01-23 11:02:59
举报
文章被收录于专栏:听雨堂听雨堂

        好日子一去不复返了,原来总觉得Mapx很多地方设计得不是很自然,比如,feature和具体的feature之间的某些属性的关系,有时令人迷惑。但是,用了Mapxtreme,才感觉到Mapx的方便。真不知MapInfo怎么想的!原来的标注非常简单,layer有个autolabel属性,一设就可以了。现在呢:

代码语言:js
复制
            //James.Liu的代码 
           Table table = Session.Current.Catalog.OpenTable("usa.tab");
            Map map = Session.Current.MapFactory.CreateEmptyMap(new Size(300, 300));
            LabelLayer layer = new LabelLayer();
            map.Layers.Add(layer);
            LabelSource source = new LabelSource(table);
            source.DefaultLabelProperties.Caption = "State_Name";
            layer.Sources.Append(source);

            //我的
            LabelLayer layer = new LabelLayer();
            MapControl1.Map.Layers.Add(layer);
            LabelSource source = new LabelSource(MapInfo.Engine.Session.Current.Catalog.GetTable("地名"));
            source.DefaultLabelProperties.Caption = "f_name";        //标注用到的那个字段名称
            layer.Sources.Append(source);

看Layer.Sources的架势,好像可以共用一个LabelLayer,试试,的确可以

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2005-07-22 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档