• 加点的心得


    加点的一般方法:
       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

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

  • 相关阅读:
    虚拟PC上网设置
    打造无线AP
    ftp密码修改
    桌面
    红蜘蛛
    C++ Zip压缩解压缩[支持递归压缩]
    C++通过访问注册表获取已安装软件信息列表
    IOS Simulator Create Keyboard Shortcut
    简单的silverlight切图程序
    silverlight 反射调用WebService
  • 原文地址:https://www.cnblogs.com/jetz/p/204986.html
Copyright © 2020-2023  润新知