예제 #1
0
        ////////////////////////////////////////////////////////////////////////////
        //--------------------------------- REVISIONS ------------------------------
        // Date       Name                 Tracking #         Description
        // ---------  -------------------  -------------      ----------------------
        // 18JUN2009  James Shen                              Initial Creation
        ////////////////////////////////////////////////////////////////////////////

        /**
         * Copy constructor.
         * @param pline     map object copy from.
         */
        public MapPline(MapPline pline)
            : base(pline)
        {
            SetMapObjectType(PLINE);
            PenStyle = new MapPen(pline.PenStyle);
            Pline    = new GeoPolyline(pline.Pline);
        }
예제 #2
0
 ////////////////////////////////////////////////////////////////////////////
 //--------------------------------- REVISIONS ------------------------------
 // Date       Name                 Tracking #         Description
 // ---------  -------------------  -------------      ----------------------
 // 18JUN2009  James Shen                 	          Initial Creation
 ////////////////////////////////////////////////////////////////////////////
 /**
  * Copy constructor.
  * @param pline     map object copy from.
  */
 public MapPline(MapPline pline)
     : base(pline)
 {
     SetMapObjectType(PLINE);
     PenStyle = new MapPen(pline.PenStyle);
     Pline = new GeoPolyline(pline.Pline);
 }