Hello.
When using Cesium labels, I have some issues.
I would like to know if there is anything I can do to overcome these issues:
1) Blurry labels - when adding labels at 12pt size (and smaller) they seem kind of blurry.
Sometimes the letters outlines are a bit cut-off.
I tried playing with the outline options, but it didn't help to much.
2) When moving around in 3D globe, the text is jittery.
3) Is there any support for RTL languages? Right now I can see the letters, but the word is reversed.
4) Is there support for multi-line labels? I don't want to add numerous labels with the same position, just to get multi-line.
Try setting font in px for now. I think there is a bug somewhere that I would like to look into, but some of this has to do with the way the browser renders text.
I’m not sure what you mean by this, do you have example code that shows the problem?
This is definitely a bug/missing feature. The workaround I posted for unicode surrogate pairs should also work here. See this post for some sample code: https://groups.google.com/d/msg/cesium-dev/6EA78tUxGRY/iEmkET1kYQ0J Essentially the workaround is to use one billboard for the whole work instead of a label. I’ll write up a bug so we fix this in the future (depends on how hard it is to detect and do).
thanks for the reply and the good work you're doing in Cesium
I currently don't have a proper example, but there are some words you can use: עברית (which is hebrew in hebrew) and عربى (which is arabic in arabic)
In simple html page, text will show properly but it will align to left (so you will start to read in the "end" of the line at the right) because inline tags start in left by default.
And the css "direction: rtl" will solve most of the problems.