
| Name | Abbreviation | Type | Access | Description | 
|---|---|---|---|---|
| List | L | Any | List | The list to map and flatten | 
| Return Value | R | Any | Item | The item to return in the current loop | 
| Name | Abbreviation | Type | Access | Description | 
|---|---|---|---|---|
| Result | R | Any | List | The flattened result of the map | 
| Value | V | Any | Item | The value of the map | 
| Index | I | Number | Item | The index of the map | 
Feed in a list
Lists have 2 or more items contained within the list object.
(If you do not have a list, map is unnecessary - just feed the single geometry directly into the function)
Start the loop
Create your set of instructions as you typically would for a single object.
Feed the V output into your function.
End the loop
Feed the output of the function into the R input.
The resulting list is then flattened.
The output of the Map is a flattened list of items that have had your function applied.