Skip to content

Instantly share code, notes, and snippets.

@wilornel
Created September 1, 2012 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wilornel/3589461 to your computer and use it in GitHub Desktop.
Save wilornel/3589461 to your computer and use it in GitHub Desktop.
$('.bringMe').live('click', function(){
console.log('derp');
lat1 = $(this).attr('lat');
lng1 = $(this).attr('lng');
console.log(lat1 +':' +lng1);
latLng1 = new google.maps.LatLng(lat1, lng1);
console.log(':' +latLng1);
map.panTo(latLng1);
lat1 = 0; lng1 = 0; latLng1 = 0;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment