zoukankan      html  css  js  c++  java
  • 加点的心得

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

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

  • 相关阅读:
    【Python第九篇】异步IO数据库队列缓存
    【Python第八篇】线程、进程及协程
    【Python第七篇】Socket网络编程
    实验五全部代码,ajax请求
    添加员工
    联级选择
    查询,利用jquery选择器
    列表、表格单选框
    注册
    聊天框
  • 原文地址:https://www.cnblogs.com/jetz/p/204986.html
Copyright © 2011-2022 走看看