Using Xcode 13.4.1. I have a View in which I use location tracking of CGPoint to drag a tile graphic from one location to another and when I am over the target location it turns green. This works as intended as a stand alone View lets call it MyLocationView().
If I create a NavigationView as a front end menu with a link to open MyLocationView() I can drag the tile but they no longer turn green over the target location. Anywhere I drag it will not find an acceptable location. Using the print to console I can see the location being reported as I drag the tile but it is not registering on the MyLocationView() to turn green. As long as I do not use a NavigationLink to open this view it works fine standalone. Why would the MyLocationView() not work the same when opened using a NavigationLink?