全部產品
Search
文件中心

Tablestore:GeoDistanceQuery

更新時間:Jun 30, 2024

表示地理距離查詢配置。GeoDistanceQuery根據一個中心點和距離條件查詢表中的資料。當一個地理位置點到指定的中心點的距離不超過指定的值時滿足查詢條件。

資料結構

message GeoDistanceQuery {
    optional string field_name = 1;
    optional string center_point = 2;
    optional double distance = 3;
}

名稱

類型

是否必選

描述

field_name

string

列名。列類型必須為GeoPoint類型。

center_point

string

中心地理座標點,是一個經緯度值。

格式為緯度,經度,緯度在前,經度在後,且緯度範圍為[-90,+90],經度範圍為[-180,+180]。例如35.8,-45.91

distance

double

距離中心點的距離。單位為米。