Can I overlay Google Logo on map or move it to top right?

后端 未结 5 1846
我寻月下人不归
我寻月下人不归 2020-12-11 06:15

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

5条回答
  •  旧巷少年郎
    2020-12-11 06:46

    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);
    

提交回复
热议问题