指定した緯度および経度を使用して地理的ポイントを作成します。
名前空間: System.Spatial
アセンブリ: System.Spatial (System.Spatial.dll)
構文
'宣言
Public Shared Function Create ( _
latitude As Double, _
longitude As Double _
) As GeographyPoint
'使用
Dim latitude As Double
Dim longitude As Double
Dim returnValue As GeographyPoint
returnValue = GeographyPoint.Create(latitude, _
longitude)
public static GeographyPoint Create(
double latitude,
double longitude
)
public:
static GeographyPoint^ Create(
double latitude,
double longitude
)
static member Create :
latitude:float *
longitude:float -> GeographyPoint
public static function Create(
latitude : double,
longitude : double
) : GeographyPoint
パラメーター
- latitude
型: System.Double
緯度。
- longitude
型: System.Double
経度。
戻り値
型: System.Spatial.GeographyPoint
作成された地理的ポイント。