views:

30

answers:

1

I have a user profile page on my web app which has contact information. I'm like a GMAPs icon that when clicked opens a new with with Google Maps, and has the contact information pre-populated and submitted. Is there a simple way to do this without having to call APIs to generate a link? Thanks

+2  A: 

I would try this as the href attribute:

http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=[INSERT ADDRESS HERE]

In the address convert ALL SPACES to "+".

Example: http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=1056+33rd+st+Grand+Rapids+MI+49508

KThompson
Thank you, I couldn't find this in google anywhere!
AnApprentice