public IGraphic newLine(double x1, double y1, double x2, double y2, ISpatialReference spatialReference)
        {
            IS3MapPoint p1 = new IS3MapPoint(x1, y1, spatialReference);
            IS3MapPoint p2 = new IS3MapPoint(x2, y2, spatialReference);

            return(newLine(p1, p2));
        }
        public IGraphic newLine(double x1, double y1, double x2, double y2)
        {
            IS3MapPoint p1 = new IS3MapPoint(x1, y1);
            IS3MapPoint p2 = new IS3MapPoint(x2, y2);

            return(newLine(p1, p2));
        }
Esempio n. 3
0
 public IGraphic newLine(double x1, double y1, double x2, double y2, ISpatialReference spatialReference)
 {
     IS3MapPoint p1 = new IS3MapPoint(x1, y1, spatialReference);
     IS3MapPoint p2 = new IS3MapPoint(x2, y2, spatialReference);
     return newLine(p1, p2);
 }
Esempio n. 4
0
 public IGraphic newLine(double x1, double y1, double x2, double y2)
 {
     IS3MapPoint p1 = new IS3MapPoint(x1, y1);
     IS3MapPoint p2 = new IS3MapPoint(x2, y2);
     return newLine(p1, p2);
 }