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:
- Titan Panel
- Map Notes
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]
{{coords|62|16|Shattrath City}}
Addons
-
Koordinator , an extremely minimalistic coordinate addon which shows your current coordinates in a GUI widget and a status bar on the full-screen map.
-
WoWPlotter , an online quest database, it plots quest objectives on a zone map, and can also suggest quests that are close together, to save you time when coming up with your waypoints.
@gerald Игровой мир в World of Warcraft просто огромен – общая площадь составляет около 113 квадратных километров. Естественно, здесь несложно бывает заблудиться. И уж тем более непросто бывает отыскать какой-то тайник – поэтому на помощь придут координаты, позволяющие ориентироваться на местности.
Но иногда бывает полезно узнать собственные координаты.
Как же это сделать?
К сожалению, стандартные способы, предусмотренные игрой, такой возможности не дают. Поэтому геймерам приходится искать альтернативные пути для решения проблемы. Например, для этого можно скачать специальный адд-он Tom Tom. Скачав и установив его, пользователь увидит, что под миникартой появилась иконка с координатами. Удобно, что её можно перетащить в любое место экрана, чтобы она не мешала и при этом постоянно была под рукой.
14 мая 2017
71408
1
MapCoords покажет вам координаты на главной и мини-карте. При наведении курсора мыши он покажет вам координаты данного местоположения, если вы хотите узнать свои координаты, то просто откройте главную карту и внизу будет надпись Player Coords.
Особенности аддона:
- Показ ваших координат;
- Вы сможете узнать координаты любой точки на карте в игре;
- Аддон не перегрузит компьютер, так как он не ресурсоемкий.
Скачать MapCoords
Ссылка на скачивание | Последнее обновление |
9.0.5 | 09.03.2021 |
1.13.6 | 13.12.2020 |
8.3 | 02.02.2020 |
1.13.3 | 02.02.2020 |
8.2 | 27.06.2019 |
8.1.5 | 17.03.2019 |
8.1 | 15.12.2018 |
8.0.1 | 18.11.2018 |
7.3.5 | 18.01.2018 |
7.3 | 01.09.2017 |
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
Cosmos users can show their current position under the minimap by typing /mntloc.
Various other AddOns are also capable of displaying your current location. Examples include:
- Titan Panel
- Map Notes
Checking coordinates without addons
In-game, simply copy the following:
/script SetMapToCurrentZone() local x,y=GetPlayerMapPosition("player") DEFAULT_CHAT_FRAME:AddMessage(format("%s, %s: %.1f, %.1f",GetZoneText(),GetSubZoneText(),x*100,y*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.
Showing coordinate locations in WoWWiki
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 <Master of Cooking>[62, 16]
{{coords|62|16|Shattrath City}}
Addons
WoWPlotter , an online quest database, it plots quest objectives on a zone map, and can also suggest quests that are close together, to save you time when coming up with your waypoints.
Coordinates , a very simple add-on that displays coordinates in the title of the minimap and bottom of the world map.
TomTom , billed as a «navigation assistant,» it gives coordinates, lets you set waypoints, and tells you how long it will take to get to your waypoint.
Загрузка…