Skip to content

Instantly share code, notes, and snippets.

View dschach's full-sized avatar

David Schach dschach

View GitHub Profile
@dschach
dschach / geocontact.page
Created October 9, 2012 16:29 — forked from joshbirk/geocontact.page
Geolocation
<apex:page StandardController="Contact" showHeader="true" sidebar="false">
<script>
var pos = {};
function success(position) {
pos = position.coords;
console.log(pos);
}
function error(msg) {