markerPos

From Bohemia Interactive Community
Revision as of 20:46, 9 April 2019 by Killzone Kid (talk | contribs) (alt syntax)
Jump to navigation Jump to search


Hover & click on the images for description

Description

Description:
Returns marker position

This command is identical to getMarkerPos
Groups:
Uncategorised

Syntax

Syntax:
markerPos markerName
Parameters:
markerName: String
Return Value:
Array - format [x,y,0]

Alternative Syntax

Syntax:
markerPos [markerName, preserveElevation]        (Since Arma 3 v1.93)
Parameters:
[markerName, preserveElevation]: Array
markerName: String
preserveElevation (Optional): Boolean Default: false
Return Value:
Array - format PositionAGL if preserveElevation is true or [x,y,0] if preserveElevation is false

Examples

Example 1:
_mPos1 = markerPos "markerOne";
Example 2:
_mPos2 = markerPos ["markerTwo", true];

Additional Information

See also:
setMarkerPossetMarkerPosLocal

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Posted on March 17, 2014
Waffle SS.
Position's Z coordinate will always be 0."

Bottom Section