map_ips
Generate a visual map showing the geographic locations of IP addresses. Input a list of IPs to receive a map report with a visualization URL for spatial analysis.
Instructions
Create a visual map of IP address locations.
Args: ips: List of IP addresses to map (up to 500,000)
Returns: Map report with visualization URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ips | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ips": {
"items": {
"type": "string"
},
"title": "Ips",
"type": "array"
}
},
"required": [
"ips"
],
"type": "object"
}