Download
(3Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 03-15-24 05:49 PM
Pictures
File Info
Compatibility:
Classic (1.15.1)
Seeds of Renewal (10.2.5)
Classic (1.15.0)
Guardians of the Dream (10.2.0)
WOTLK Patch (3.4.3)
Hot Fix (10.1.7)
Classic (1.14.4)
Fractures in Time (10.1.5)
WotLK Patch (3.4.2)
Dragonflight patch (10.0.7)
Embers of Neltharion (10.1.0)
WOTLK Patch (3.4.1)
Dragonflight patch (10.0.5)
Dragonflight (10.0.2)
Updated:03-15-24 05:49 PM
Created:11-03-08 07:22 PM
Downloads:37,053
Favorites:102
MD5:
Categories:Map, Coords, Compasses, The Burning Crusade Classic, Classic - General, WOTLK Classic
10.2.5

MapCoords  Updated this week!  Popular! (More than 5000 hits)

Version: 1.6
by: SDPhantom [More]

Mapcoords displays your current coordinates on the minimap.

Contact:

I'm open to questions and suggestions. Feel free to message me here or post in the comments.
I'm also available for support on the WoWUIDev Discord, @mention me (SDPhantom) or send a DM.

v1.6 (2021-09-16)
-Multi-ToC build implemented

v1.5 (2019-12-11)
-"Hook Failed!" no longer shows if reloading the UI in an area without player position

v1.4 (2019-04-11)
-Fixed 8.0 API changes

v1.3 (2016-10-29)
-Fixed Rogue class hall (and possibly other locations) not switching map correctly

v1.2 (2016-10-26)
-Fixed 7.1 changes to GetPlayerMapPosition()

v1.1 (2009-05-08)
-Optimized hook code

v1.0 (2007-10-23)
-Initial version
Post A Reply Comment Options
Unread 10-29-16, 02:58 AM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Ended up making a rogue using class trial to test this, but I found a solution and fixed the problem in this addon.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Last edited by SDPhantom : 10-29-16 at 04:12 AM.
Report comment to moderator  
Reply With Quote
Unread 10-26-16, 07:33 PM  
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 1857
File comments: 780
Uploads: 27
Just for my own sanity I installed this as my only addon and ran the same tests from my second last post in this thread with the same results.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
Report comment to moderator  
Reply With Quote
Unread 10-19-16, 08:41 AM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Re: Re: Not working with World Quest Tracker

Originally Posted by SDPhantom
That doesn't look like any part of this addon. You might be mistaking for MapCoords by Jim-Bim.
This is an almost 9-year-old minimap coordinate display.
LOL sorry about that xD well it had the same name
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Unread 10-18-16, 11:25 PM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Re: Not working with World Quest Tracker

That doesn't look like any part of this addon. You might be mistaking for MapCoords by Jim-Bim.
This is an almost 9-year-old minimap coordinate display.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Report comment to moderator  
Reply With Quote
Unread 10-18-16, 08:26 PM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Opps

wrong addon page ;D
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Last edited by Tonyleila : 10-19-16 at 08:42 AM.
Report comment to moderator  
Reply With Quote
Unread 12-12-09, 06:40 PM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Originally posted by Ash-rak
Some Changes that i have made. I think it looks better.

Original:
MapCoordsMinimapText:SetPoint("TOP",Minimap,"TOP",0,-16);
Changed:
MapCoordsMinimapText:SetPoint("BOTTOM",Minimap,"BOTTOM",0,12);

Original:
MapCoordsMinimapText:SetText(string.format("%0.2f,%0.2f",x*100,y*100));
Changed:
MapCoordsMinimapText:SetText(string.format("%0d,%0d",x*100,y*100));

Hidiho Althena of Wrathbringer
The first one was just a matter of personal preference.
I stuck it wherever it would be out of the way and didn't look too cluttered.
Everyone is free to change it to wherever they wish to have it.

The second one was to include the decimal precision to some point. A lot of the older coordinate addons have no decimal precision while some newer ones only have it to 1 place. The example original code displays a decimal precision of 2 places which is adequate enough to measure a character's movement down to a single step. Adjusting this precision is as easy as changing the "2" in "%0.2f" to how many decimal places you want it to display.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Report comment to moderator  
Reply With Quote
Unread 12-11-09, 07:46 AM  
Althena
A Kobold Labourer
 
Althena's Avatar

Forum posts: 0
File comments: 8
Uploads: 0
Some Changes that i have made. I think it looks better.

Original:
MapCoordsMinimapText:SetPoint("TOP",Minimap,"TOP",0,-16);
Changed:
MapCoordsMinimapText:SetPoint("BOTTOM",Minimap,"BOTTOM",0,12);

Original:
MapCoordsMinimapText:SetText(string.format("%0.2f,%0.2f",x*100,y*100));
Changed:
MapCoordsMinimapText:SetText(string.format("%0d,%0d",x*100,y*100));

Hidiho Althena of Wrathbringer
__________________
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: