加点的心得

时间:2022-04-23
本文章向大家介绍加点的心得,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

加点的一般方法:

   Catalog _catalog=MapInfo.Engine.Session.Current.Catalog;  
   MapInfo.Geometry.Point pt = new MapInfo.Geometry.Point(map.GetDisplayCoordSys(),dp);
   MapInfo.Styles.SimpleVectorPointStyle vs = new MapInfo.Styles.SimpleVectorPointStyle();
   vs.PointSize = 8;
   vs.Color = Color.DarkMagenta;
 
   Feature ft2=new Feature(tb.TableInfo.Columns);
   string strID=DateTime.Now.ToString("hhmmss");
   ft2.Geometry=pt;
   ft2["f_name"]=PointName;
   ft2["ID"]=strID;
   ft2["MI_Style"]=vs;
   tb.InsertFeature(ft2);

   Feature ft3=MapInfo.Engine.Session.Current.Catalog.SearchForFeature(tb.Alias,MapInfo.Data.SearchInfoFactory.SearchWhere("ID="+strID+" and f_name='"+PointName+"'"));
   return ft3.Key.Value;

但是每次添加的都是五角星,如果想添加其他形状该怎么办?MapInfo中有一个默认的符号库(自己看英文帮助,查词霸,猜得意思)VectorPointStyleRepository,其中有36个元素,每个元素的值是一个SimpleVectorPointStyle类型。

Property Value

The element SimpleVectorPointStyle at the specified index.

这样,就不用生成新的样式,直接调用它就行了,把vs的赋值直接换成这个:

MapInfo.Styles.SimpleVectorPointStyle vs = (MapInfo.Styles.SimpleVectorPointStyle)MapInfo.Engine.Session.Current.StyleRepository.VectorPointStyleRepository[2];
//索引的范围0-35

我做了一个试验,把所有的符号都取了出来,如图: