I am wondering if I could put an overlay element over Google logo on map, or change its place to top right. I have an example picture( link is below ) that I made overlaying
As mentioned by Chris B. the logo can be move using CSS. Here is an example that uses javascript iso an external ccs file:
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = "#"+element.id+" div div a[target='_blank'] img[src*='google_white'] {top:-25px !important;} ";
document.head.appendChild(css);
var map = new google.maps.Map(element, mapOptions);