BIS fnc KMLimport: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| tkoh |Game name=
| tkoh


|1.00|Game version=
|1.00


|gr1 = Map and Markers |GROUP1=
|gr1 = Map and Markers


| Read positions from a [https://en.wikipedia.org/wiki/Keyhole_Markup_Language KML file].
| Read positions from a [https://en.wikipedia.org/wiki/Keyhole_Markup_Language KML file].
{{Informative|Recommended to execute in loading screen.}}|Description=
{{Informative|Recommended to execute in loading screen.}}


| filePath call [[BIS_fnc_KMLimport]] |Syntax=
| filePath call [[BIS_fnc_KMLimport]]


|p1= filePath: [[String]] - (Optional, default {{Inline code|"hsim\Doc_H\GoogleEarth\Missions\" + [[missionName]] + ".kml"}}) KML file path
|p1= filePath: [[String]] - (Optional, default {{Inline code|"hsim\Doc_H\GoogleEarth\Missions\" + [[missionName]] + ".kml"}}) KML file path
{{Feature|arma3|Default value only works in {{tkoh}}. Do not rely on it in {{arma3}}}}|Parameter 1=
{{Feature|arma3|Default value only works in {{tkoh}}. Do not rely on it in {{arma3}}}}


| [[Array]] of [[Array|Arrays]] in format [type, positionXYZ, folder, name, description]
| [[Array]] of [[Array|Arrays]] in format [type, positionXYZ, folder, name, description]
Line 20: Line 20:
* folder: [[String]] - path to the value, "" if in the .kml root
* folder: [[String]] - path to the value, "" if in the .kml root
* name: [[String]] - location's name
* name: [[String]] - location's name
* description: [[String]] - location's description|Return value=
* description: [[String]] - location's description


|x1= <code>_data = "subDir\myFile.kml" [[call]] [[BIS_fnc_KMLimport]];</code> |Example 1=
|x1= <code>_data = "subDir\myFile.kml" [[call]] [[BIS_fnc_KMLimport]];</code>


| [[BIS_fnc_keypointsExportFromKML]], [[BIS_fnc_dbImportXML]], [[BIS_fnc_posDegToWorld]] |See also=
| [[BIS_fnc_keypointsExportFromKML]], [[BIS_fnc_dbImportXML]], [[BIS_fnc_posDegToWorld]]
}}
}}



Revision as of 23:23, 17 January 2021

Hover & click on the images for description

Description

Description:
Read positions from a KML file.
Recommended to execute in loading screen.
Execution:
call
Groups:
Map and Markers

Syntax

Syntax:
filePath call BIS_fnc_KMLimport
Parameters:
filePath: String - (Optional, default "hsim\Doc_H\GoogleEarth\Missions\" + missionName + ".kml") KML file path
Arma 3
Default value only works in Take On Helicopters. Do not rely on it in Arma 3
Return Value:
Array of Arrays in format [type, positionXYZ, folder, name, description]
  • type: Number - 0 for a point, 1 for a line, 2 for a polygon
  • positionXYZ: Position - format PositionAGL
  • folder: String - path to the value, "" if in the .kml root
  • name: String - location's name
  • description: String - location's description

Examples

Example 1:
_data = "subDir\myFile.kml" call BIS_fnc_KMLimport;

Additional Information

See also:
BIS_fnc_keypointsExportFromKMLBIS_fnc_dbImportXMLBIS_fnc_posDegToWorld

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


Bottom Section