Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement

Map coordinates are numerical references to locations on the WoW maps. You can display your coordinates with many AddOns. They are also called tloc, an abbreviation for "Thottbot location". It consists of a set of x/y coordinates, which is two numbers ranging from 0 to 100, representing a location on the current zone map.

  • 0,0 represents the top left corner
  • 100,0 represents the top right corner
  • 0,100 represents the bottom left corner
  • 100,100 represents the bottom right corner
  • 50,50 is the exact center of the map

Users of the Cosmos addon can show their current position under the minimap by typing /mntloc.
Various other AddOns are also capable of displaying your current location. Examples include:

Checking coordinates without addons[]

In-game, simply copy the following:

/run z = C_Map.GetBestMapForUnit("player"); pos = C_Map.GetPlayerMapPosition(z,"player"); print(C_Map.GetMapInfo(z).name, math.ceil(pos.x*10000)/100, math.ceil(pos.y*10000)/100)

Go into the game, open a chat box, paste, hit enter. Your present coordinates for the zone will appear in the default chat frame. This code can also be placed in a macro.

Multiple coordinates for the same point[]

Because the zone maps are always rectangular but the zones themselves are not, your location can sometimes be visible on more than one zone map at different coordinates. Thus, if you've manually changed the map to a different zone, or zoomed it out while in a city, you'll need to change it back before giving coordinates. The above script does this, but some add-ons won't.

Showing coordinate locations in Wowpedia[]

You can use the templates {{Zone Map}} and {{Zone Map Note}} to indicate locations on a map using the map coordinates.

Tooltip[]

You can also add coordinates (with a map tooltip), as a note, to an item or NPC using {{coords}}:

Example: The Rokk[62, 16]VZ-Shattrath CityBlip

{{coords|62|16|Shattrath City}}

Addons[]

Advertisement