It looks like the documentation is incomplete! I've filed an issue to update that.
You have two options for computing area without a geoshape
:
- Concatenate several points together with semicolons in between. In XLSForm, that would look like introducing a
calculate
with calculationcontact(${point1}, ';', ${point2}...}
and then callingarea
on that. - Use points in a repeat. In XLSForm, that would look like calling
area(${my-point-in-repeat})
outside of the repeat.