create With Wkid Or Null
Creates a spatial reference builder based on the given horizontal and vertical coordinate systems. If the provided WKID or verticalWKID is not a supported well-known ID, this function will return null.
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 createWithWkidOrNull(wkid, null), 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, null will be returned.
Since
200.8.0
Parameters
The well-known ID of the horizontal coordinate system. Must be a supported well-known ID.
The well-known ID of the vertical coordinate system. Must be a supported well-known ID or null to indicate a spatial reference without a vertical WKID.