Home - michaelelliott/UnitedWay GitHub Wiki

United Way

<button type="button"style="color: #FFFFFF;text-align:center; font-family: rockwell; font-size: 20px; background-color:#FF0000; width:350px; height:65px;" onclick="getLocation()">Funded Organizations Nearby

www.uwlm.ca
<script> var x=document.getElementById("content"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition,showError); } else{x.innerHTML="Geolocation is not supported by this browser.";} }

function showPosition(position) { var latlon=position.coords.latitude+","+position.coords.longitude;

var img_url="http://maps.googleapis.com/maps/api/staticmap?center=" +latlon+"&zoom=14&size=350x300&sensor=false"; document.getElementById("content").innerHTML=""; }

function showError(error) { switch(error.code) { case error.PERMISSION_DENIED: x.innerHTML="User denied the request for Geolocation." break; case error.POSITION_UNAVAILABLE: x.innerHTML="Location information is unavailable." break; case error.TIMEOUT: x.innerHTML="The request to get user location timed out." break; case error.UNKNOWN_ERROR: x.innerHTML="An unknown error occurred." break; } } </script>

⚠️ **GitHub.com Fallback** ⚠️