Geo Point Within Polygon Condition
Triggers the moment the Geo Point value in the provided fieldpath is inside the defined polygon.Â
Specific Definitions
Property | Value |
kind | GeoPointWithinPolygonCondition |
fieldpath | layerId.fieldId Details on accessing field values, specifically fieldpath starts lowercase Supports JSON path syntax which you can test here:Â https://jsonpath.com. |
polygon | Geo Point
A minimum of three geo points must be defined. |
Is the Images' Location in the Defined Area?
{
"kind": "GeoPointWithinPolygonCondition",
"polygon": [
{
"kind": "GeoPoint",
"lat": 12,
"lon": 12
},
{
"kind": "GeoPoint",
"lat": 12,
"lon": 12
},
{
"kind": "GeoPoint",
"lat": 12,
"lon": 12
}],
"fieldPath": "image.location"
}