Target Compass A simple website that allows you to set a latitude and longitude and then use the orientation API on your phone to always point in that direction. You can check out an example at https://alexbeals.com/projects/barn. Permissions Flow Rotating Setup Just modify this code to describe/point to where you want to point to. target-compass/index.php Lines 2 to 10 in 5b3d038 /** * MODIFY THIS FOR A DIFFERENT TARGET LOCATION * - your target (for what will show up in the pointer, keep it short) * - your descriptor (what will show up for "Find <x>" in the title/button) * - the location (lat, lon to as specific as you can make it) */ $target = 'Barn'; $descriptor = 'the barn'; $location = ['lat' => 43.70720223386053, 'lon' => -72.29280809595264];