On Wednesday, March 21, 2012, Bob Basques <[email protected]>
wrote:
> Can the LayerSwitcher menu be opened/closed from the startup URL of a
page? as in:
>
> <myp-age-url>?LayerSwitcher=open  (or layerswticher=closed)??
>
> I have some automated system clients that would like use the two
different start up options in certain business applications.
>
> I could make another page I suppose, but that seems like the wrong
approach over the long run.

What about something like this:

var params = OpenLayers.Util.getParameters();
if (params.LayerSwitcher === 'open') {
   layersSwitcher.maximize();
} else {
   layerSwitcher.minimize();
}

-- 
Eric Lemoine

Camptocamp France SAS
Savoie Technolac, BP 352
73377 Le Bourget du Lac, Cedex

Tel : 00 33 4 79 44 44 96
Mail : [email protected]
http://www.camptocamp.com
_______________________________________________
Dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/openlayers-dev

Reply via email to