Removing the Google Maps API Premier Terms-of-Use/Logo/etc. links?

前端 未结 7 1304
时光取名叫无心
时光取名叫无心 2021-02-08 12:05

is it legal to remove the logo/terms of use link displayed on my integrated google map (google maps premier)? The problem is that when I zoom into the map, the link tends to get

7条回答
  •  礼貌的吻别
    2021-02-08 12:33

    This CSS works like charm. Removes Google Logo as well as terms of use.

    a[href^="http://maps.google.com/maps"]{display:none !important}
    
    .gmnoprint a, .gmnoprint span {
        display:none;
    }
    .gmnoprint div {
        background:none !important;
    }
    

提交回复
热议问题