// Update the radius when the user makes a selection.
google.maps.event.addDomListener(document.getElementById('radius'),
'change', function() {
var meters = parseInt(this.value, 10);
layer.setOptions({
query: {
select: locationColumn,
from: tableId,
where: 'ST_INTERSECTS(Latitude, ' +
'CIRCLE(LATLNG(53.337638, -6.266971), ' + meters + '))'
}
});
circle.setRadius(meters);
//alert(position);
//circle.setCenter(new google.maps.LatLng(position));
});
我想将(53.337638,-6.266971)更改为变量'位置',位置与(x,y)具有相同的值类型,但它不适用于:'ST_INTERSECTS(纬度,'+'CIRCLE (LATLNG('+position+'), '+meters + '))' 如何修改代码?