I created a Distance matrix from a vector layer of 36 points. I want to show all the distance lines between all the points.
In the Distance matrix layer, I click Properties > Symbology, then under the Symbol layer type I use Geometry Generator. Under Geometry type I select LineString/MultiLineString. Units are Map Units.
Finally, I use this code:
make_line(
geometry(
get_feature('Site Type 2', 'id', "InputID")
),
geometry(
get_feature('Site Type 2', 'id', "TargetID")
)
)
When I click Apply, nothing happens. Any thoughts?
