URL:
https://<root>/services/<service>/VideoServer/<layer>/coverage?type=area
Methods:
GET
Version Introduced:
12.1

Description

The area resource outputs the overall area telemetry information in JSON format.

Request parameters

ParameterDetails

f

The response format: The default value is html.

Values: html | json | pjson

Response parameters

ParameterDetails

rings

The esriGeometry locations associated with the output telemetry areas.

spatialReference

The spatialReference associated with a layer's telemetry.

Example usage

The following is a sample GET request for the area operation:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/rest/services/<serviceName>/VideoServer/<layer>?type=area&f=pjson

JSON Request example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
{
  "rings": [[
    [
      "x": "<x values>",
      "y": "<y values",
    ]
  ]]
  "spatialReference":  {"wkid": 4326}
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "rings": [[
    [
      -104.80019014750437,
      41.144929147482358
    ],
    [
      -104.7794799772393,
      41.185177700248332
    ],
    [
      -104.74492993756391,
      41.1554174978994
    ],
    [
      -104.74468448186767,
      41.154029867113074
    ],
    [
      -104.7550079904028,
      41.134461086014014
    ],
    [
      -104.75764359739073,
      41.131229881568636
    ],
    [
      -104.76110502596667,
      41.130944480318121
    ],
    [
      -104.7887404046579,
      41.1289830193938
    ],
    [
      -104.78881955603191,
      41.1290287349631
    ],
    [
      -104.79644107626061,
      41.13875407761482
    ],
    [
      -104.80019014750437,
      41.144929147482358
    ]
  ]],
  "spatialReference": {"wkid": 4326}
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.