Q:
Cities in Map Names API
AdelphiA.9287 – The Enigma Guild
Since this is still unanswered: i just discovered that https://api.guildwars2.com/v1/map_names.json returns all maps which have events available (i think that isn’t documented at all) so the primary usage of this one is https://api.guildwars2.com/v1/events.json or https://api.guildwars2.com/v1/event_details.json
Try to throw anything in event_details into a database and run some SQL like this:
SELECT `map_id` FROM `gw2_events` GROUP BY `map_id` ORDER BY `map_id`
and compare the result with map_names.json – i belive it’s generated in the same way
Oh and using the maps.json isn’t too hard – it’s actually quite handy.
(edited by smiley.1438)