Skip to content

Instantly share code, notes, and snippets.

@zackdouglas
Created June 5, 2012 12:19
Show Gist options
  • Save zackdouglas/2874668 to your computer and use it in GitHub Desktop.
Save zackdouglas/2874668 to your computer and use it in GitHub Desktop.
A Google Maps Bookmarklet
javascript:var v_='1.0.0', p={home:'', work:''}, arr,addr='',newURL='',i=0,t='', sub=function(s){return p[s]||s;}, URLEncode=function (a){var b='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_.!~*%25()', c='0123456789ABCDEF', d='',e='',f=''; for(i=0;i<a.length;i++){ e=a.charAt(i); if(e==' ') d+='+'; else if(b.indexOf(e)!=-1) d+=e; else{ f=e.charCodeAt(0); if(f>255){ alert('Character %25'+e+'%25 will be encoded as a space will be used.'); d+='+'; } else{ d+='%'+c.charAt((f>>4)&0xF)+c.charAt(f&0xF)}}} return d}; if(typeof String.prototype.trim == 'undefined'){ String.prototype.trim = function(){ return this.replace(/^\s\s*/,'').replace(/\s\s*$/,'')}} if(typeof document.getSelection()=='string'&&(addr=document.getSelection()).length>0&&confirm('XGMaps detected a possible address selection. Would you like XGMaps to use this selection?')){} else{ addr=unescape('%s'); if(addr=='%25s'){ addr='home'} if(addr.indexOf('--')!=-1){ arr=addr.split('--'); addr='from:'+sub(arr[0].trim()); for(i=1;i<arr.length;i++){ addr+=' to:'+sub(arr[i].trim());}} else addr=sub(addr.trim());} newURL='http://maps.google.com/maps?q='+URLEncode(addr)+'&hl=en'; window.location.href=newURL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment