-
-
Notifications
You must be signed in to change notification settings - Fork 718
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unicode font do not display properly in map. #50
Comments
I opened this issue in Mapbox gl js. Can anyone give me direction how this can be solved to support Devanagari letters |
I'm not sure I fully understand the problem. It would be best if you elaborate. |
|
Ahh, I have the same problem with "nikud" - the hebrew extra characters to indicate how to read, they appear after the letter instead of within the letter. |
@aerotypebharat: What fontface is used in your screenshot? Do you have a public fontface that renders Devanagari correctly at https://fonts.google.com/ ? You can then use https://github.com/orangemug/font-glyphs to generate pre-rendered fonts (Signed Distance Field glyphs) to consume from your style |
I am using Khula font. It is public in Google Khula Font. It renders properly in text. I have tried other fonts that support Devanagari but maplibre-gl.js does not have code to handle vowels and special characters of Devanagari. |
The approach chosen by Mapbox to render labels is unfortunately fundamentally incompatible with scripts that require more sophisticated handling than a mechanical typewriter could provide. This is not a problem with Unicode support as such; there is no problem with the encoding. |
There was some attempts to solve this, but they didn't go far. OpenLayers tried to do it using svg on canvas, but iirc it was not solving it properly either. Basically there is a c++ lib that knows how to do all the proper text rendering. Browsers use that for the sites. Webgl has limited support of that lib (?), eg cannot use it along a curve to draw street names. So mb had to create a separate system for fonts that can draw labels in webgl along a curve line, but only if each letter is by itself. It does not support ligatures and other complexities. They did a hack for Arabic by creating 4 variants for each letter: without ligatures, with one on left, one in right, and both, plus some code that decides which variant to use. Languages such as used in Maianmar (Birma) are far more complex, and cannot be hacked this way. Hopefully some day browsers will have a good font support in webgl so all this hackary can just be dropped |
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 30 days. |
This issue was closed because it has been stalled for 30 days with no activity. |
Assigned XXL bounty. |
@HarelM I'd like to work on this issue, can I claim this? |
Nice that you start working on this, @hami9x. You can have a look at maplibre/maplibre-native#778 there should be some useful info. |
And also this one: maplibre/maplibre#231 |
@wipfli Thank you for the heads up, I have some background in C++ and enjoy hardcore stuff like this. This will be really challenging though. |
It's worth considering writing it in Rust maybe, so that it will be available in both native and here (as wasm). |
The arabic is displaying backwards and the letters are disconnected. |
@bigBxr to get correct arabic text you need to load the RTL plugin |
This is the name in openstreetmap.org
This is what displayed in map.
Test code available in code pen here
https://codepen.io/snickell/pen/dypOWzj
The text was updated successfully, but these errors were encountered: