Hi, On 2009-12-18 16:41, Jimmy Aumard wrote: > I have another little problem with line style, with openLayers I > propose "dash","solid" or "dot" (for strokeDashStyle attribute of > symbolizer) but it's not save on the SLD. > SLD doesn't support that?
SLD has a stroke-dasharray, which OpenLayers also supports. You can e.g. use the following mapping: dot: "1 4" dash: "4 4" dashdot: "4 4 1 4" longdash: "8 4" longdashdot: "8 4 1 4" Regards, Andreas. > > Thanks for help > > Jim > -- > Aumard Jimmy > Développeur - http://www.kinaxia.fr > > > _______________________________________________ > Users mailing list > [email protected] > http://openlayers.org/mailman/listinfo/users > -- Andreas Hocevar OpenGeo - http://opengeo.org/ Expert service straight from the developers. _______________________________________________ Users mailing list [email protected] http://openlayers.org/mailman/listinfo/users
