Hi,

On Fri, Sep 19, 2008 at 10:18 PM, Mark Nine <[EMAIL PROTECTED]> wrote:
> I'm having difficulty setting the "select" style for the ModifyFeature
> Control. The documentation for ModifyFeature has a property for virtualStyle
> (which sets the style for the vertices and works for me), but not
> selectStyle. Do I need to create a SelectFeature Control along with my
> ModifyFeature Control?
>
> edit = new OpenLayers.Control.ModifyFeature(boundingBoxLayer, {selectStyle:
> green_style, mode: OpenLayers.Control.ModifyFeature.RESHAPE});

Instead, try:

edit = new OpenLayers.Control.ModifyFeature(boundingBoxLayer, {
    mode: OpenLayers.Control.ModifyFeature.RESHAPE}
);
edit.selectControl.selectStyle = green_style;

Regards,
Andreas.

-- 
Andreas Hocevar
OpenGeo - http://opengeo.org/
Expert service straight from the developers.
_______________________________________________
Users mailing list
Users@openlayers.org
http://openlayers.org/mailman/listinfo/users

Reply via email to