Wayfinder Widget Colors
Hi Community
Is there a way to change the color of the reticle and the circle of the Wayfinder widget?

Thanks for your help!
Best wishes
Alex
Hi Community
Is there a way to change the color of the reticle and the circle of the Wayfinder widget?

Thanks for your help!
Best wishes
Alex
Alex,
Sorry that was a rather a quick answer and probably you already knew that!
Currently I don't see any way to do what you want .
Alternatively you could maybe turn off the reticule and add/move a billboard image at the end point - which again you may have thought of
$scope.addImageIndicator = function () {
let data = $scope.getWidgetProp("wayfinder-1", "waypointsData" );
positionImage( "3DImage-Indicator", data[0].position.x, data[0].position.y, data[0].position.z );
}
positionImage = function (image , x,y,z) {
$scope.view.wdg[image].x = x;
$scope.view.wdg[image].y = y;
$scope.view.wdg[image].z = z;
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.