Skip to content

Instantly share code, notes, and snippets.

Created March 5, 2013 15:18
Show Gist options
  • Save anonymous/5091015 to your computer and use it in GitHub Desktop.
Save anonymous/5091015 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