Geometry.Distance(Geometry) メソッド

定義

Azure Cosmos DB サービス内の 2 つのジオメトリ間の距離 (メートル単位)。

public double Distance (Microsoft.Azure.Cosmos.Spatial.Geometry to);
member this.Distance : Microsoft.Azure.Cosmos.Spatial.Geometry -> double
Public Function Distance (to As Geometry) As Double

パラメーター

to
Geometry

2 番目の Geometry

戻り値

2 つのジオメトリ間の距離をメートル単位で返します。

var distanceQuery = documents.Where(document => document.Location.Distance(new Point(20.1, 20)) < 20000);

注釈

現在、この関数は 型の Point ジオメトリのみをサポートしています。

適用対象