Screeze wrote: > Thanks, that's exactly the tip i needed. > Another question: > I was wondering if there is a possibillity, to remove the "powered > by google" in the bottom left corner?
That is not so difficult. One way is to use the two following files; a smaller iframe inside a larger iframe: ----------------------------------------------------------------- <!-- execute this file --> <html> <head><title>Main file</title></head> <body> <iframe width="500" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="ifr.html"> </iframe> </body> </html> <!-- name this file ifr.html and save in the same directory --> <html> <head><title>Google Map</title></head> <body> <iframe width="500" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/? ie=UTF8&ll=50.805935,6.437988&spn=6.694764,19.665527&z=6&output=embed"> </iframe> </body> </html> ----------------------------------------------------------------- Alternatively, you could create a layer on top with an image that covers the logo, in this case a unicolor white image: ----------------------------------------------------------------- <html> <head><title>Hide logo by z-index</title></head> <body> <img src="http://www.svapsara.com/images/1whiteSquare.gif" border="0" style="z-index: 1001; position: absolute; top: 270px; left: 0px;" width="520" height="50"> <iframe width="500" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/? ie=UTF8&ll=50.805935,6.437988&spn=6.694764,19.665527&z=6&output=embed" style="width:500px; height:300px; z-index:1000; position:absolute;"> </iframe> </body> </html> ----------------------------------------------------------------- You should not use this code in any production environment; the Google- logo must always be visible there (see Terms of Use). Hope this helps, -- Bart --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
