예제 #1
0
파일: UtilityClass.cs 프로젝트: BJFX/UWACN
 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
파일: UtilityClass.cs 프로젝트: BJFX/UWACN
 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;
 }