我使用了融合表格图层查询来使用Location
列
layer = new google.maps.FusionTablesLayer({
query: {
select: 'Location',
from: '****************************',
where: 'ST_INTERSECTS(\'Location\', CIRCLE(LATLNG(' + position.lat() + ', ' + position.lng() + '),' + 5000 + '))',
limit: 500
}
});
正如谷歌所说,
我们如何使用latitude, longitude
在location
中查询地点而不是select and where condition
。
答案 0 :(得分:1)
对于两列纬度/经度,请使用第一列的名称,即定义为纬度的列,在您的情况下为Latitude
。