Home - michaelelliott/UnitedWay GitHub Wiki
<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
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>