Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-users] help

That is a tough problem for SLD to handle; something that Gabriel Roldan has recently had some ideas about. For now I would recommend creating ...
- two TextSymbolizers; with offsets so they appear on different lines...
- the first symbolizer would be using the expression:

strSubstring( NAME, 0, strIndexOf( NAME, " " ) )

- The second would be using :

strSubstring( NAME, strIndexOf( NAME, " " ) + 1 )

The function list I am referring to is here:
- http://udig.refractions.net/confluence/display/EN/Common+Query+Language

You can translate the CQL expressions to the SLD / Filter syntax as needed.
Jody

Nicholas I wrote:
Hi ,
I have point layer where the value of the name is of 80 characters for example South Island, i just want to specify if there are two words separated by a space then create a new line and make the second word appear down.

 I want the out put to be like below, not both the words on the same line.

   South
   Island

Is there any way of doing it in sld level, may be using some sld tags or any other way.

thank you
-Nicholas I
------------------------------------------------------------------------

_______________________________________________
udig-users mailing list
udig-users@xxxxxxxxxxxxxxxxxxxxx
http://lists.refractions.net/mailman/listinfo/udig-users



Back to the top