SpatialReferenceBuilder constructor
Creates a spatial reference builder based on the given horizontal and vertical coordinate systems.
This method creates a spatial reference builder based on the given horizontal coordinate system WKID and vertical coordinate system verticalWKID. It will have default precision values (SpatialReferenceBuilder.resolution, SpatialReferenceBuilder.tolerance, SpatialReferenceBuilder.verticalResolution, and SpatialReferenceBuilder.verticalTolerance). If verticalWKID is less than or equal to 0, this is equivalent to calling SpatialReferenceBuilder.new, and the builder will not have a vertical coordinate system associated with it. If verticalWKID is greater than zero but is not a supported well-known ID, an exception will be thrown.
Parameters:
wkid— The well-known ID of the horizontal coordinate system. Must be a supported well-known ID.verticalWkid— The well-known ID of the vertical coordinate system. Must be a supported well-known ID.