Location
Log in to add to favouritesThe location object represents a geographical coordinate that specifies the position of a point on the Earth's surface.
Properties
Name | Type | Format | Description |
---|---|---|---|
lat | number | The north-south position. | |
lon | number | The east-west position. |
Example
ContensisClient.entries.get('<entry_id>').then(function (entry) {
console.log(entry.myLocation.lat);
console.log(entry.myLocation.lon);
});