views:

100

answers:

2

How can I move the Google Maps zoom controls, via the API, to the opposite side of the map?

A mockup image is below:

Google Maps image with controls moved to the right.

+2  A: 

I hate to be that guy, but did you read the manual?

Peter Bailey
Yes, I have and can't figure out how too; hence the question here at StackOverlow
JustinT
Perhaps elaborate on what you've tried, then? There's not much to it - not sure where you are going astray.
Peter Bailey
+1  A: 

Assuming you're using version 2 of the API:

map.addControl(new GLargeMapControl3D(), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,10)));

Note that the GSize will position it where you want. If you want further down than give a higher value to the second parameter

Bob