WoW:API GetMapLandmarkInfo

From AddOn Studio
Revision as of 21:56, 26 December 2004 by WoWWiki>Flickering
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
GetMapLandmarkInfo -Documentation by Flickering-
name, textureIndex, x, y = GetMapLandmarkInfo(landmarkIndex);

Returns the information about a landmark on the current world map.


Arguments
(landmarkIndex)
landmarkIndex
Number - Indicates which landmark to query (from 1 to GetNumMapLandmarks())

Returns
name, textureIndex, x, y
name
String - The name of the landmark
textureIndex
Number - An index representing which landmark icon to display. Values seen today are:
4 - Town - the small house icon
5 - City - The grey tower icon
15 - Invisible - There's number of these on zoomed in maps that dont get displayed.
x
Number - The X location of the landmark's center (A proportion of the current map's width, between 0 and 1)
y
Number - The Y location of the landmark's center (A proportion of the current map's height, between 0 and 1)

Template:WoW API