Open dwweb0309 opened 1 year ago
Hello,
You can achieve this by using some of the PostgreSQL methods:
ST_Contains(GeomFromText('POLYGON((long1 lat1, long2 lat2, long3 lat3))'), my_geometry_column)
ST_Within(my_geometry_column, GeomFromText('POLYGON((long1 lat1, long2 lat2, long3 lat3))'))
You just need to return them within filtersToWhere
result.
filtersToWhere
function is great for filtering but how can we filter points by polygon?