How can I move the Google Maps zoom controls, via the API, to the opposite side of the map?
A mockup image is below:
How can I move the Google Maps zoom controls, via the API, to the opposite side of the map?
A mockup image is below:
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