你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Geometry.Intersects(Geometry) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检查当前 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
参数
返回
如果 geometry1 与 geometry2 相交,则返回 true,否则返回 false。
示例
var distanceQuery = documents.Where(document => document.Location.Intersects(new Point(20.1, 20)));