Hey, @NaomiCostilla-1466!
This is not in a report that I can find, but you can obtain this information via the MyGeotab SDK. Go to the API Runner, log in, and choose Api call from the dropdown.
From there, change the "Device" to "Zone" so that your code looks like this:
api.call("Get", {
"typeName": "Zone",
"resultsLimit": 10
}, function(result) {
console.log("Done: ", result);
}, function(e) {
console.error("Failed:", e);
});
/*opt nomin*/The results will show up in an array, and (I've redacted the exact points but) the coordinates will show up if you open the resulting arrays to see this view:
NOTE: The screenshot shows the wrong code to the left where "Device" hasn't yet been changed to "Zone"; however, the output display on the right still has the correct information.
If you've got a ton of zones in that database, you'll likely need to build in an IF statement to narrow down that zone and display only that in the console (let us know if you need help with that and I'm sure someone will chime in with extra info).
That should do it for you. Hope this helps. :)
Best,
Joy B