On 1 December 2011 08:26, Robert Buckley <[email protected]> wrote:
> Thanks for the response.
>
> Looking through the archive I thought that if I defined the layer as
> singletile, this problem wouldn´t arise.
>
> var layer_ortsnamen_lk = new OpenLayers.Layer.WMS("Ortsnamen",
> "http://maps.zgb.de/geoserver/gwc/service/wms";, {
>         layers: 'zgb:ortsnamen_lk',
>         projection: "EPSG:900913",
>         format: 'image/png',
>         transparent: true,
>         singleTile: true
>     }, {
>         'buffer': 0,
>         'opacity': 1,
>         'isBaseLayer': false,
>         visibility: true
>     });
>
>

However singletile is an option to the layer not a WMS parameter.

var layer_ortsnamen_lk = new OpenLayers.Layer.WMS("Ortsnamen",
"http://maps.zgb.de/geoserver/gwc/service/wms";, {
        layers: 'zgb:ortsnamen_lk',
        projection: "EPSG:900913",
        format: 'image/png',
        transparent: true
    }, {
        'buffer': 0,
        'opacity': 1,
        'isBaseLayer': false,
        visibility: true,
        singleTile: true
    });


Ian

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
Geoserver-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to