Example #1
0
 public MapGooglePath(List <MapGooglePoint> pathPoint, MapGooglePath.PathColor pathColor)
 {
     this._pathPoint  = new List <MapGooglePoint>();
     this._pathPoint  = pathPoint;
     this._pathColor  = pathColor;
     this._pathStatus = PathStatus.pc;
 }
Example #2
0
 public MapGooglePath(List <MapGooglePoint> pathPoint, MapGooglePath.PathColor pathColor, MapGooglePath.PathWidth pathWidth)
 {
     this._pathPoint  = new List <MapGooglePoint>();
     this._pathPoint  = pathPoint;
     this._pathColor  = pathColor;
     this._pathWidth  = pathWidth;
     this._pathStatus = PathStatus.pwc;
 }