Beispiel #1
0
 /// <summary>
 /// Overload constructor with parameters.
 /// </summary>
 /// <param name="projectUid">The project's unique identifier to send the coordinate conversion request to.</param>
 /// <param name="conversionType">The coordinate conversion type (NE to LL or LL to NE).</param>
 /// <param name="conversionCoordinates">The array of coordinates to be converted.</param>
 /// <returns>An instance of the CoordinateConversionRequest class.</returns>
 ///
 public CoordinateConversionRequest(Guid projectUid, TwoDCoordinateConversionType conversionType, TwoDConversionCoordinate[] conversionCoordinates)
 {
     ProjectUid            = projectUid;
     ConversionType        = conversionType;
     ConversionCoordinates = conversionCoordinates;
 }
Beispiel #2
0
 /// <summary>
 /// Overload constructor with parameters.
 /// </summary>
 /// <param name="projectId">The project to send the coordinate conversion request to.</param>
 /// <param name="conversionType">The coordinate conversion type (NE to LL or LL to NE).</param>
 /// <param name="conversionCoordinates">The array of coordinates to be converted.</param>
 /// <returns>An instance of the CoordinateConversionRequest class.</returns>
 ///
 public CoordinateConversionRequest(long projectId, TwoDCoordinateConversionType conversionType, TwoDConversionCoordinate[] conversionCoordinates)
 {
     ProjectId             = projectId;
     ConversionType        = conversionType;
     ConversionCoordinates = conversionCoordinates;
 }