[Geoserver-users] Advanced projection handling pixelates imagery in EPSG:3857

2017-03-28 Thread Richard Cho
Hi, Firstly I'm using GeoServer 2.10.1 with GeoTools 16.1 and image mosaic store from PostGIS datastore. I have images that cross the dateline, so I store the data in EPSG:4326 in my datastore. Under my GeoServer WMS settings I have Enable advanced projection handling and Enable continuous

[Geoserver-users] Vector layer

2017-03-28 Thread Bob Miller
I am developing an app using geoserver and openlayers. I have a zip code layer which is working via WMS and am trying to serve the same layer via WFS. My openlayers code is... var redZipSrc = new ol.source.Vector({ format: new ol.format.GeoJSON(), url: function(extent)

Re: [Geoserver-users] Seeking instruction to resolve vulnerabilities in geoserver application

2017-03-28 Thread Andrea Aime
On Tue, Mar 28, 2017 at 7:59 PM, Jonathan Moules < jonathan-li...@lightpear.com> wrote: > Hi Andrea, > > "The other three have to do with the UI, the common practice is to not > expose the user interface to the web, using a proxy and only allowing > service paths (geoserver/ows, geoserver/wms,

Re: [Geoserver-users] Styling Polygons without styling the polygon overlays

2017-03-28 Thread Daniel Araujo Miranda
Andrea beat me to the answer... Is it possible to set transparency "style - wide" instead of individually for symbolizers? I was trying to find a way to make transparency work for that case. I suppose one could implement the transparency when rendering at the client, but it would be best if

Re: [Geoserver-users] Styling Polygons without styling the polygon overlays

2017-03-28 Thread Chris Snider
The circles are the result of the stroke on the two overlapping polygons. If you remove/make transparent the stroke, and leave the fill as is, it will remove the circles. Mind you, this will also remove the hard edge of the polygon, but it should still delineate the edge simply due to the

[Geoserver-users] CSS dynamic legend title

2017-03-28 Thread Murad Jamal
Hello All /* @title sometitle */ i know that we can hardcode titles in CSS styling like above. can we instead have grab the title from the layer field value. so if we have 2 field called max and min we can do something like /* @title min >= and < max */ maybe some syntax to differentiate

Re: [Geoserver-users] Styling Polygons without styling the polygon overlays

2017-03-28 Thread Andrea Aime
On Tue, Mar 28, 2017 at 3:39 PM, Nachtigall, Jens (init) < jens.nachtig...@init.de> wrote: > Hi, > > > > good idea, but I think the problem will be that the overlapping > transparency of the fill will add to each other. So I guess this would work > if there was no transparency… Right? > Ah

Re: [Geoserver-users] Styling Polygons without styling the polygon overlays

2017-03-28 Thread Nachtigall, Jens (init)
Hi, good idea, but I think the problem will be that the overlapping transparency of the fill will add to each other. So I guess this would work if there was no transparency… Right? Or is there some way of setting the fill color in absolute values with rgba or similar, so that the two feature

Re: [Geoserver-users] Styling Polygons without styling the polygon overlays

2017-03-28 Thread Andrea Aime
On Tue, Mar 28, 2017 at 2:38 PM, Nachtigall, Jens (init) < jens.nachtig...@init.de> wrote: > Is there some kind of SLD rule that avoids these red circle overlaps at > the beginning of the polygons? > > Can you do something like it's done for lines, two feature type styles: - The first one only

Re: [Geoserver-users] CSS dynamic legend title

2017-03-28 Thread Andrea Aime
Hi Murad, no styling language can do that, a rule catches several features so cannot depend on the values of a particular one (I assume the "fields" are coming from a particular feature no?) Cheers Andrea On Tue, Mar 28, 2017 at 1:13 PM, Murad Jamal wrote: > Hello All > >

[Geoserver-users] CSS dynamic legend title

2017-03-28 Thread Murad Jamal
Hello All /* @title sometitle */ i know that we can hardcode titles in CSS styling like above. can we instead have grab the title from the layer field value. so if we have 2 field called max and min we can do something like /* @title min >= and < max */ maybe some syntax to differentiate