For the complete documentation index, see llms.txt. This page is also available as Markdown.

New-UDMap

Interactive maps for displaying markers, lines, and polygons.

Synopsis

Interactive maps for displaying markers, lines, and polygons.

Syntax

New-UDMap [[-Id] <String>] [[-Longitude] <Single>] [[-Latitude] <Single>] [[-Zoom] <Int32>] [[-Height] <String>] [[-Width] <String>] [-Content] <Endpoint> [[-ZoomControlPosition] <String>] [[-ScaleControlPosition] <String>] [-Animate] [[-MaxZoom] <Int32>] [<CommonParameters>]

Description

Interactive maps for displaying markers, lines, and polygons.

Parameters

-Id

The ID of the component. It defaults to a random GUID.

Required?                    false
Position?                    1
Default value                ([Guid]::NewGuid())
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false

-Longitude

The default longitude of the map.

-Latitude

The default latitude of the map.

-Zoom

The default zoom level of the map.

-Height

The height of the map.

-Width

The width of the map.

-Content

The script block to call to get the map data.

-ZoomControlPosition

The zoom control position. Valid values are topright, topleft, bottomright, bottomleft.

-ScaleControlPosition

The scale control position. Valid values are topright, topleft, bottomright, bottomleft, hide.

-MaxZoom

The maximum zoom level of the map.

Outputs

-------------------------- EXAMPLE 1 --------------------------

Last updated

Was this helpful?