You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only chinese works, any other characters will not work. Why? Is my usage wrong?
Works:
Symbol symbol = symbolManager.create(
new SymbolOptions()
.withLatLng(
new LatLng(28.693, 101.30934)
)
.withTextField("中文")
);
symbolManager.update(symbol);
Not works:
Symbol symbol = symbolManager.create(
new SymbolOptions()
.withLatLng(
new LatLng(28.693, 101.30934)
)
.withTextField("中文hi") // hi, 中文123, 中-文 not work
);
symbolManager.update(symbol);
If any withTextField contains non-chinese , all Symbol can not show.
The text was updated successfully, but these errors were encountered:
The other problem: SymbolManager.setSymbolPlacement("line") not work.
I need to add label on line, but can not find any document. So i try to add Symbol with the point on line. But if set SymbolManager.setSymbolPlacement("line") , all Symbol can not show.
Although the problem disappears after setting the font. This problem is still strange. It is recommended to use the system default font if no font is set.
If the problem cannot be solved for the time being, I hope there will be documentation explaining which options are required, or throw an exception if no required options.
version:
Only chinese works, any other characters will not work. Why? Is my usage wrong?
Works:
Not works:
If any withTextField contains non-chinese , all Symbol can not show.
The text was updated successfully, but these errors were encountered: