Hi All, Is it possible to render place names (areas, river, streets, etc.) with two languages: place name in local language and its English translation near? Thank you. asked 24 Apr '13, 14:57 jvalcenko aseerel4c26 ♦ |
Yes. You can see the MapQuest rendering already does something like this: http://osm.org/go/0t2tSf--?layers=Q For your own rendering, the best way to do this is likely in your PostgreSQL query. There you can add some logic to make sure all of the labels make sense, such as not including the English translation if it is the same as the local name. You'll need to make sure you have imported the Here is an example query from an osm2pgsql import for a places layer. If there is a
When using the hstore option replace A simple approach is to import into PostGIS using alternative table names, using the |
Like in http://osm-tools.org -> thaimap ? Ask the maintainer of that site: scroll down the page to see contact data. Or read his explanation how he did that. Also see Map_internationalization in general. answered 26 Apr '13, 13:38 stephan75 |