I am writing an application prompting the user to select the time zone. I get my list of time zones from the Olson database (via NodaTime), but this is a massive list with many backup entries, at least for my purposes.
When you create an event in Google Calendar, you can select the time zone from a relatively small list with an order by country where necessary. I would like to be able to achieve something as simple as without creating a separate database, which this person does .
Since I write this in C # MVC plus JavaScript in the interface, I am looking for a library in any of these languages, which gives me a small list in a user-friendly format that I could display in a drop-down list. Is there such a thing or should I create my own and regularly update it, like the example shown in the hyperlink?
source share