SqlGeography.Point 方法 (Double, Double, Int32)

 

根据一个 Point 实例的 X 和 Y 值以及空间引用 ID (SRID) 构造一个表示该实例的 SqlGeography 实例。

命名空间:   Microsoft.SqlServer.Types
程序集:  Microsoft.SqlServer.Types(位于 Microsoft.SqlServer.Types.dll)

语法

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public static SqlGeography Point(
    double latitude,
    double longitude,
    int srid
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
static SqlGeography^ Point(
    double latitude,
    double longitude,
    int srid
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
static member Point : 
        latitude:float *
        longitude:float *
        srid:int -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Shared Function Point (
    latitude As Double,
    longitude As Double,
    srid As Integer
) As SqlGeography

参数

  • latitude
    Type: System.Double

    一个 double 值,该值表示所生成的 Point 的 X 坐标。

  • longitude
    Type: System.Double

    一个 double 值,该值表示所生成的 Point 的 Y 坐标。

  • srid
    Type: System.Int32

    一个 int 表达式,它表示您希望返回的geography实例的 SRID。

返回值

Type: Microsoft.SqlServer.Types.SqlGeography

一个从指定的纬度、经度和 SRID 值构造的 SqlGeography 实例。

另请参阅

SqlGeography 类
Microsoft.SqlServer.Types 命名空间

返回页首