maplibre / demotiles

Demo vector tiles and map style for web, helloworld and CI tests @MapLibre. Hosted directly on GitHub Pages, serverless, no keys.
https://demotiles.maplibre.org/
BSD 3-Clause "New" or "Revised" License
83 stars 17 forks source link

Full country labels #23

Open schalise-bc opened 5 months ago

schalise-bc commented 5 months ago

Hi maplibre community,

Not sure if I should raise this as an issue or for discussion. I am using demotile for my website which is sufficing my need but need country label to be common i.e. in full form. I saw that some countries have short form being used and some don't have names that are official. E.g. Dominican Republic -> Dominican Rep. Sint Marteen -> St. Martin Cook Islands -> Cook Is.

Is there any other symbol or name sources I could use where I could get the official names with demo styles ? Thank you

wipfli commented 5 months ago

Maybe https://fieldmaps.io/

schalise-bc commented 4 months ago

@wipfli Sorry for my naive question. Is there any documentation or example on how to ?

wipfli commented 4 months ago

No problem. For fieldmaps I don't know. But you could also have a look at natural earth which is probably the dataset that was used here...

wipfli commented 4 months ago

I forgot to mention: You can of course also just go to https://overpass-turbo.eu/ and run this query to get all country labels in a geojson:

[out:json];
(
  node["place"="country"]({{bbox}}); 
);
out;