Created
March 5, 2013 15:18
-
-
Save anonymous/5091015 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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