I am currently utilizing Google Maps API v2 with the default UI because I find the controls to be more visually appealing when set to default.
<script type="text/javascript">
var map = null;
function load() {
map = new GMap2(document.getElementById('map'),
{mapTypes:[G_PHYSICAL_MAP]});
map.setCenter(new GLatLng(32.0000, 19.3000), 2);
map.setUIToDefault();
}
</script>
I am looking to position all controls (zoom and map type) on the right side. While I am familiar with how to achieve this in V3, I am unsure of how to do it in this version.