/* ************************************************************************************ Copyright 2016 by TRAILSOURCE.COM, Inc. ALL RIGHTS RESERVED. This document has been registered with the US Registrar of Copyrights. Unauthorized duplication or usage is monitored by Copyscape and will be agressively litigated to the full extent of Title 17 of the United States Code. ************************************************************************************ */ function GPSlocator() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(SearchPosition, locError); } else { alert("BROWSER DOES NOT SUPPORT GPS"); } } function locError(error) { alert("UNABLE TO ACTIVATE GPS"); } function SearchPosition(position) { var url='https://www.trailsource.com/?latitude=' + position.coords.latitude.toFixed(7) + '&longitude=' + position.coords.longitude.toFixed(7) ; location.href=url; } /* ************************************************************************************ Copyright 2016 by TRAILSOURCE.COM, Inc. ALL RIGHTS RESERVED. This document has been registered with the US Registrar of Copyrights. Unauthorized duplication or usage is monitored by Copyscape and will be agressively litigated to the full extent of Title 17 of the United States Code. ************************************************************************************ */