Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Coordinates in FullScreen Map #43

Open
Vengos opened this issue Nov 25, 2020 · 3 comments
Open

Coordinates in FullScreen Map #43

Vengos opened this issue Nov 25, 2020 · 3 comments

Comments

@Vengos
Copy link

Vengos commented Nov 25, 2020

When i enlarge map to full screen i don't see coordinates anywhere.

@babelfish
Copy link

This issue still exists 2 years later.

@johnip86
Copy link

johnip86 commented Jan 7, 2023

I was able to fix this pretty quickly.
In the most recent version on curseforge I was having the same isssue.
On the small map that shows the quest log, the coordinates are below the map and outside the frame. It's the same case with the full screen map, but you can't see them because they're off the screen...
Open the Coords.lua file and check lines 112 and 113. You should see this:

cursortext:SetPoint("TOPLEFT", WorldMapFrame.ScrollContainer, "BOTTOM", 30, WoWClassic and -9 or -5)
playertext:SetPoint("TOPRIGHT", WorldMapFrame.ScrollContainer, "BOTTOM", -30, WoWClassic and -9 or -5)

Change to this:

cursortext:SetPoint("BOTTOMLEFT", WorldMapFrame.ScrollContainer, "BOTTOM", 30,5, WoWClassic and -9 or -5)
playertext:SetPoint("BOTTOMRIGHT", WorldMapFrame.ScrollContainer, "BOTTOM", -30,5, WoWClassic and -9 or -5)

If you don't add the 5 point offset in the Y dimension, they are stuck under the border and halfway off the screen on the full screen map.
@babelfish

@PirateKain
Copy link

PirateKain commented Mar 16, 2023

Yes same here. The coordinates needs to either move to the top map bar or in with the zone dropdowns on the right side. Or add positioning options so we can move it to where we'd like it best ourselves, like positioning sliders.

No I'm not going to edit files every time there is an update so the above post is not an option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants