The thread said: (Recovered from Gmail (so times in BST) and the Google Web Cache)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ How can i open only map from http://maps.google.com Maps API From: Vedavyasa Acharya Date: 15 Sep 2009 10:57 ~~~~~~ I'm working on google maps , I just want to know can we create a map like the one in the below link. http://www.stevetrefethen.com/blog/content/binary/vclgooglemashup.png I'm using VC++ MFC , Please let me know how to do this. Hope I will get reply. Thanks ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: Rossko Date: 15 Sep 2009 17:06 ~~~~~~ On Sep 15, 10:57 am, Vedavyasa Acharya <[email protected]> wrote: > I'm working on google maps , I just want to know can we create a map > like the one in the below link. > http://www.stevetrefethen.com/blog/content/binary/vclgooglemashup.png Well, thats a screenshot. I guess you don't really want to know how to make screenshots? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: Vedavyasa Acharya Date: 15 Sep 2009 17:42 ~~~~~~~~~~~~ <[email protected]> to google-maps-api More options 15 Sep (15 hours ago) Yeah that is a screenshot but i want to google map to be like that i.e when I open a webpage it should display only map but when i open maps.google.com there are so many unwanted things. How to remove all those things from that..? I want only the map in the window. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: Papa Bear Date: 15 Sep 2009 18:00 ~~~~~~~~~~~~ Although this is not an API question I'll give an idea of what to do: On the top blue border of the map, there are 3 links: "Print", "send" and "Link". Click on "Link". Two results will show. Take the second one "Paste HTML to embed in website" You will get something like this: <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/? ie=UTF8&ll=40.889454,-73.898181&spn=0.012604,0.01929&z=16&output=embed"></ iframe><br /><small><a href="http://maps.google.com/? ie=UTF8&ll=40.889454,-73.898181&spn=0.012604,0.01929&z=16&source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small> the part after "src=", is the important part. In this case: http://maps.google.com/?ie=UTF8&ll=40.889454,-73.898181&spn=0.012604,0.01929&z=16&output=embed Use that on your web page. But it has to be embedded, that's why it's in an <iframe>. I use this to make a little window on a page with a live map inside the little window. I don't use their template, I create my own iframe. Notice the end of the string "output=embed" - that means the map allows itself to be in an iframe but not as a stand alone page. Here's an example I wrote: http://members.bellatlantic.net/~vze2h6gy/papabear/Day2006_Oct_NH_Border.html#day1 Look under the picture. At the bottom of the list are two map links, one for a custom map I created, and the other a standard Google map giving driving directions. This is what you want. You see this all the time for restaurant's hotels, etc. BTW: there is a general Google Maps forum somewhere (sorry - don't know exactly where) where this question might better belong and you may get a better answer. On Sep 15, 12:42 pm, Vedavyasa Acharya <[email protected]> wrote: > Yeah that is a screenshot but i want to google map to be like that i.e when > I open a webpage it should display only map but when i open > maps.google.comthere are so many unwanted things. How to remove all > those things from > that..? I want only the map in the window. > > 2009/9/15 Rossko <[email protected]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en -~----------~----~----~----~------~----~------~--~---
