SqlSpatialFunctions.BufferWithTolerance 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个几何对象,该对象表示与实例之间的距离小于或等于指定值的所有点值的并集,从而允许指定的容差。
重载
| 名称 | 说明 |
|---|---|
| BufferWithTolerance(DbGeography, Nullable<Double>, Nullable<Double>, Nullable<Boolean>) |
返回一个几何对象,该对象表示与地理实例距离小于或等于指定值的所有点值的并集,从而允许指定的容差。 |
| BufferWithTolerance(DbGeometry, Nullable<Double>, Nullable<Double>, Nullable<Boolean>) |
返回一个几何对象,该对象表示与几何图形实例的距离小于或等于指定值的所有点值的并集,从而允许指定容差。 |
BufferWithTolerance(DbGeography, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)
返回一个几何对象,该对象表示与地理实例距离小于或等于指定值的所有点值的并集,从而允许指定的容差。
public:
static System::Data::Spatial::DbGeography ^ BufferWithTolerance(System::Data::Spatial::DbGeography ^ geographyValue, Nullable<double> distance, Nullable<double> tolerance, Nullable<bool> relative);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")]
public static System.Data.Spatial.DbGeography BufferWithTolerance(System.Data.Spatial.DbGeography geographyValue, double? distance, double? tolerance, bool? relative);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")>]
static member BufferWithTolerance : System.Data.Spatial.DbGeography * Nullable<double> * Nullable<double> * Nullable<bool> -> System.Data.Spatial.DbGeography
Public Shared Function BufferWithTolerance (geographyValue As DbGeography, distance As Nullable(Of Double), tolerance As Nullable(Of Double), relative As Nullable(Of Boolean)) As DbGeography
参数
- geographyValue
- DbGeography
地理值。
返回
与地理实例的距离小于或等于指定值的所有点值的联合。
- 属性
适用于
BufferWithTolerance(DbGeometry, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)
返回一个几何对象,该对象表示与几何图形实例的距离小于或等于指定值的所有点值的并集,从而允许指定容差。
public:
static System::Data::Spatial::DbGeometry ^ BufferWithTolerance(System::Data::Spatial::DbGeometry ^ geometryValue, Nullable<double> distance, Nullable<double> tolerance, Nullable<bool> relative);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")]
public static System.Data.Spatial.DbGeometry BufferWithTolerance(System.Data.Spatial.DbGeometry geometryValue, double? distance, double? tolerance, bool? relative);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")>]
static member BufferWithTolerance : System.Data.Spatial.DbGeometry * Nullable<double> * Nullable<double> * Nullable<bool> -> System.Data.Spatial.DbGeometry
Public Shared Function BufferWithTolerance (geometryValue As DbGeometry, distance As Nullable(Of Double), tolerance As Nullable(Of Double), relative As Nullable(Of Boolean)) As DbGeometry
参数
- geometryValue
- DbGeometry
几何图形值。
返回
与几何图形实例的距离小于或等于指定值的所有点值的并集。
- 属性