Hi Joe, I think something like this shoul do it:

       info = new OpenLayers.Control.
WMSGetFeatureInfo({
           url: 'http://tobagoborn.com:8080/geoserver/wms',
           title: 'Identify features by clicking',
           layers: [layer1, layer2,...],  <---Here you provide an array of
layer objects. These are the layers you are querying
           eventListeners: {
               getfeatureinfo: function(event) {
                   map.addPopup(new OpenLayers.Popup.FramedCloud(
                       "chicken",
                       map.getLonLatFromPixel(event.xy),
                       null,
                       event.text,
                       null,
                       true
                   ));
               }
           }
       });
       map.addControl(info);
       info.activate();
_______________________________________________
Users mailing list
[email protected]
http://openlayers.org/mailman/listinfo/users

Reply via email to