Skip to content

Instantly share code, notes, and snippets.

@cfjedimaster
Forked from anonymous/gist:5091015
Created March 5, 2013 15:20
Show Gist options
  • Save cfjedimaster/5091026 to your computer and use it in GitHub Desktop.
Save cfjedimaster/5091026 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
//I'm not doing anything else, so just leave
if(!navigator.geolocation) return;
navigator.geolocation.getCurrentPosition(function(pos) {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(pos.coords.latitude,pos.coords.longitude);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment