Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<title>Sundae School</title>
<style type="text/css">
body {
background-color: #75BBA8;
}
li {
list-style-type: none;
@HaWyanHa
HaWyanHa / geolocation.js
Created May 6, 2016 19:41
Notes for GeoLocation
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(success, fail);
} else {
console.log("no html");
}
function fail (error) {
var errorType = {
0: "Unknown error",
1: "Permission denied by User",