Location list fields are a special kind of list field where each option is associated to a set of geographic coordinate system coordinates.

When working with this kind of field via the API, the coordinates can be found inside the “InternalFormat” for the field and can be matched to the option via the ID.

Looking at the ProcFields response:

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
{
    "Result": {
        "Process": {
            "ProcessID": 502,
            "Fields": [
                {
                    "Name""A Location List",
                    "Uid""500_7610",
                    ...
                    "Options": [
                        {
                            "Text""Headquarters",
                            "ID": 9386,
                            "IsHidden"false
                        },
                        {
                            "Text""Field office",
                            "ID": 9387,
                            "IsHidden"false
                        }
                    ],
                    "InternalFormat": {
                        "Values": [
                            {
                                "Value""51.0500\u00b0 N, 114.0667\u00b0 W",
                                "ID": 9386
                            },
                            {
                                "Value""53.54438900,-113.49092669",
                                "ID": 9387
                            }
                        ]
                    },
                    ...
                }
            ],
            ...
        }
    }
}