你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Geometry.Intersects(Geometry) 方法

定义

检查当前 geometry1 是否与 geometry2 相交。

public bool Intersects (Microsoft.Azure.Cosmos.Spatial.Geometry geometry2);
member this.Intersects : Microsoft.Azure.Cosmos.Spatial.Geometry -> bool
Public Function Intersects (geometry2 As Geometry) As Boolean

参数

geometry2
Geometry

第二个 Geometry

返回

如果 geometry1 与 geometry2 相交,则返回 true,否则返回 false。

示例

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

适用于