示例#1
0
 double length;//当前长度
 public LineParameter(ref MapCustom.Map Map, Graphics tg, PointLatLng sp, PointLatLng ep, int elap, string anitext)
 {
     this.map    = Map;
     g           = tg;
     startp      = sp;
     endp        = ep;
     ElaspseTime = elap;
     length      = 0;
     text        = anitext;
 }
示例#2
0
 public AniParameter(ref MapCustom.Map Map, Graphics tg, PointLatLng tp, int tRadius, int elap, string str)
 {
     this.map    = Map;
     g           = tg;
     p           = tp;
     maxRadius   = tRadius;
     ElaspseTime = elap;
     radius      = 1;
     text        = str;
 }