I'm starting to learn a bit of Arcade but very new to it, and looking at creating an attribute expression to create a short cut link in my pop up to my companies video survey which the URL uses x and y.
I have managed to correctly enable this for point features using the below:
var PointGeometry = Geometry($feature);
var ArcadeX = PointGeometry.x;
var ArcadeY = PointGeometry.y;
but I would like to use it for Polyline, by getting the start point x and y, can anyone help please?