コード例 #1
0
ファイル: PyCmd.cs プロジェクト: tevfikoguz/ProjectCollection
        public static IFeature addspot(Geometry.Vector pos)
        {
            Feature f = new Feature(pos);

            f["ga-type"]   = "default";
            f["ga-radius"] = "500";
            f["ga-mass"]   = "1000";
            _spotLayer.AddFeature(f);
            return(f);
        }