Solved
How can field values be read from an infotable?
- May 24, 2017
- 2 replies
- 3155 views
I'm trying to set the values of a newly created property using value that exist in an external infotable:
var location = new Object();
location.latitude = Things[networkAssetName].location;
location.longitude = Things[networkAssetName].location;
location.elevation = 0;
location.units = "WGS84";
These are the result i'm seeing from the above code.
How can i access the correct columns of the infotable?
Thanks,
Andy

