Reputation: 5866
I have added google maps to my website's contact page. but company's profile tag doesnt get centered in iframe. how can I fix this?
here is the code I copied from google
<iframe width="790" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=rotasist+yaz%C4%B1l%C4%B1m&aq=&sll=41.005322,29.01218&sspn=0.575166,1.352692&t=h&ie=UTF8&hq=rotasist+yaz%C4%B1l%C4%B1m&hnear=&ll=40.995204,29.099564&spn=0.008988,0.021136&z=14&iwloc=A&cid=3028905870531188654&output=embed"></iframe><br /><small><a href="https://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=rotasist+yaz%C4%B1l%C4%B1m&aq=&sll=41.005322,29.01218&sspn=0.575166,1.352692&t=h&ie=UTF8&hq=rotasist+yaz%C4%B1l%C4%B1m&hnear=&ll=40.995204,29.099564&spn=0.008988,0.021136&z=14&iwloc=A&cid=3028905870531188654" style="color:#0000FF;text-align:left">View Larger Map</a></small>
Upvotes: 0
Views: 2083
Reputation: 2432
Try this instead
<iframe width="790" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=rotasist+yaz%C4%B1l%C4%B1m&aq=&sll=41.005322,29.01218&sspn=0.575166,1.352692&t=h&ie=UTF8&hq=rotasist+yaz%C4%B1l%C4%B1m&hnear=&ll=41.007,29.099564&spn=0.008988,0.021136&z=14&iwloc=A&cid=3028905870531188654&output=embed"></iframe><br /><small><a href="https://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=rotasist+yaz%C4%B1l%C4%B1m&aq=&sll=41.005322,29.01218&sspn=0.575166,1.352692&t=h&ie=UTF8&hq=rotasist+yaz%C4%B1l%C4%B1m&hnear=&ll=40.995204,29.099564&spn=0.008988,0.021136&z=14&iwloc=A&cid=3028905870531188654" style="color:#0000FF;text-align:left">View Larger Map</a></small>
I adjusted one of the lat/lon params (sent as ll) so that it would push the point closer to the lower border of the map, and show more of the popup window. In short, the param
ll=40.995204,29.099564
became
ll=41.007,29.099564
If thats still not good enough, you can adjust that ll param until you get it just where you want it.
Upvotes: 1