methods/Get-BulkNearestPostcode.psm1
#TODO Complete this function <# .SYNOPSIS Returns nearest postcodes for a given longitude and latitude. .DESCRIPTION A longer description of the function, its purpose, common use cases, etc. .NOTES Accepts up to 100 geolocations. .LINK Specify a URI to a help page, this will show when Get-Help -Online is used. .EXAMPLE Test-MyTestFunction -Verbose Explanation of the function or its result. You can include multiple examples with additional .EXAMPLE lines #> function Get-BulkNearestPostcode { [CmdletBinding()] param( # [parameter(ValueFromPipeline)] ) process { #TODO } } |