I'm looking for a list of time zones that corresponds to major cities. Like what java.util.TimeZone can provide.
I mean, I want to resolve the America/Los_Angeles
identifier to UTC-8:00
in javascript.
Is there already an existing JSON file or format that has this feature?
I came across to this which is close to what I'm looking.
UPDATE
Solution: Detect the ID of the current user timezone using moment.js (Did not answer my question directly but solved my problem)