Grax.9204:

Hello There

Maybe I am missing something, but I struggle to find a way to get informations for all open world maps. The only thing I’d need would be map names and continent_rect informations. The issue is, that all the APIs I’m looking at deliver much more then just normal open world maps (the ones visible on your ingame map while you’re in the open world).

The “maps” API returns everything including personal story,…
“map_names” includes things like the Crown Pavilion.
“map_floors” again includes personal story,…

Is there a way to get what I need without having to create a hardcoded list of Map IDs?

StevenL.3761:

I’m guessing that you’re after a list of maps that count towards world completion? I suspect that floor 0 is what you’re after.

https://api.guildwars2.com/v1/map_floor.json?continent_id=1&floor=0

Grax.9204:

Nice, thanks a lot! That’s exactly it.
Is there some more documentation somewhere then just “floor – The map floor” in the wiki?

smiley.1438:

Is there some more documentation somewhere then just “floor – The map floor” in the wiki?

No. But you’re welcome to add it: http://wiki.guildwars2.com/wiki/Guild_Wars_2_Wiki:Requests_for_API_editorship

Grax.9204:

I just had to realize, that even with the “floor=0” parameter you get some personal story istances (“Magic Sucks” as an example). Seems that I’ll have to create a list of “interesting” map IDs anyways.

Should any of the devs be reading, it would be really great to have a way which gets only maps that are of interest when drawing an open world map of Tyria. With the current state of the APIs especially, I can’t see much use for all the personal/living story / activity instance map informations anyways

EDIT: Here’s my list of Mapnames/IDs should anyone else have a need for it
https://docs.google.com/spreadsheets/d/1m0sLG3fjRHZLfJqyFppjJjf_G7sZgTWEsUanV_bAM8Y/edit?usp=sharing

StevenL.3761:

I looked into this a little bit more. It is true that “Magic Sucks” is only accessible as part of the story, but it IS actually a map. It lies just north of Rata Sum, and has a single sector labeled “Advanced Metamystics Lab”. Rata Sum has a portal that leads to the map, but it is disabled for some reason.

The only other map on floor 0 without an entrance is “Readings On the Rise”. It has a single sector labeled “Dynamics Union”, which is on the second level of Rata Sum.

So what do these have in common? They’re both story instances that start in Rata Sum. What does that mean? I don’t know.

StevenL.3761:

Perhaps the most robust way to get a list of open world maps is to filter out maps that do not have waypoints (points_of_interest.*.type == “waypoint”). It requires a bit of coding effort, but it will save you from having to maintain a spreadsheet.