visibleMap: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "{{Command " to "{{RV|type=command ") |
Lou Montana (talk | contribs) m (Text replacement - "<dd class="notedate">Posted on ([^<>]+) " to "<dd class="notedate">Posted on $1</dd> ") |
||
Line 31: | Line 31: | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate">Posted on 13 November 2017 | <dd class="notedate">Posted on 13 November 2017</dd> | ||
<dt class="note>'''[[User:Jamesadamar|James]]''' | <dt class="note>'''[[User:Jamesadamar|James]]''' | ||
<dd class="note"> | <dd class="note"> |
Revision as of 01:17, 30 January 2021
Description
- Description:
- Description needed
- Groups:
- MapInteraction
Syntax
- Syntax:
- Syntax needed
- Return Value:
- Return value needed
Examples
- Example 1:
if (visibleMap) then {hint "You're showing the map !"}
Additional Information
- See also:
- See also needed
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
- Posted on 13 November 2017
- James
-
visibleMap does not work in all cases where a map might be part of a dialog like in a uav terminal or in a artillery computer dialog. Some of these cases can be covered with an addMissionEventHandler of type "Map". Just use the two magic variables 'mapIsOpened' and 'mapIsForced'. Skeleton might look something like
// update marker as long as map is open (works for uav stations as well) J_myGPSEH = addMissionEventHandler ["Map", { params ["_mapIsOpened", "_mapIsForced"]; if (_mapIsOpened) then { systemChat "GPS aktiv"; J_var_GPSOn = true; // no sheduled environment -> create one /* Triggered when map is opened or closed either by user action or script command openMap. */ [] spawn { waitUntil{ ... // do something as long as map is open; not J_var_GPSOn }; }; } else { J_var_GPSOn = false; systemChat "GPS inaktiv"; }; }];