chumyee
chumyee

Reputation: 91

how to place the Google Maps V3 at the center of web page?

I want to ask you something. I make the application web with the Google Maps inside. But the problem is my map is in the left side of my web page. How to place the maps at the center of web page?

This is my screenshot :

enter image description here

So, how to place the maps at the center of green part? Now, the maps is at the left side of the green part. Please help. Thank You.

Upvotes: 1

Views: 14084

Answers (1)

mch
mch

Reputation: 1279

You can add a stylesheet that has margin "auto" on left and right side.

<style type="text/css">
div#googleMap { margin: 0 auto 0 auto; }
</style>

<div id="googleMap"><!-- contains map --></div>

Upvotes: 13

Related Questions