I really like my map controllers, such as the zoom and street view, to be in the default top right hand corner of the map, but I also want to put an image there.
I know I can use statements like: zoomControlOptions:{position:google.maps.ControlPosition.XXXXX} to move the controls to different corners, but I want to keep it in the LEFT_TOP, just x-pixels down.
Previously I was using a jQuery statement that ran on an interval when the map initialization script, but this was just broken in some recent changes made to the map API. I was hoping for a more compliment fix that I wouldn't have to worry about monitoring to see if it still works.
function adjustToolbars(){if($("div.gmnoprint").length > 0){
$("div.gmnoprint").each(function(){
var index_current = parseInt($(this).css("zIndex"), 10);
if(index_current == 10){
$(this).css("margin-top", "60px");
window.clearInterval(interval);}});}}