Not sure if OpenLayers has this built in, but it seems fairly strait-forward
to do this with just a few lines of javascript.  Just attach a javascript
function to the "featureadded" event of your drawing vector layer to do
something like this:

for(var f in vectorLayer.features) {
   if(polygon.geometry.intersects(f.geometry)) {
      selectFeatureControl.select(f);
   }
}




On Thu, Aug 11, 2011 at 3:42 PM, osullivj <[email protected]>wrote:

> Hi,
>
> I am aware the select control can use a BBOX...does anyone know if it is
> possible to allow the user to draw a polygon to select all points within
> the
> polygon
>
> Thanks,
> Jerry
>
> --
> View this message in context:
> http://osgeo-org.1803224.n2.nabble.com/Polygon-Select-Tool-tp6677807p6677807.html
> Sent from the OpenLayers Users mailing list archive at Nabble.com.
> _______________________________________________
> Users mailing list
> [email protected]
> http://lists.osgeo.org/mailman/listinfo/openlayers-users
>
_______________________________________________
Users mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/openlayers-users

Reply via email to