João Pesce
João Pesce

Reputation: 2504

Remove/Edit Google's link on Google Maps

Is there a way of removing or editing the white bottom-left "Google" link in a Street View panorama? I don't mind that it is there as long as it doesn't link back to the coordinates of the place it's showing. I'm making a game where the person has to guess the location being shown and this ruins the whole point of it. I already removed the address via addressControl: false.

Upvotes: 0

Views: 2055

Answers (2)

João Pesce
João Pesce

Reputation: 2504

I've come up with a solution based on this question. The idea is to put a div above the undesired part that is transparent and links back to Google Maps. Tested on Chrome and Safari:

<div id="google_map" style="width: 600px; height: 430px; margin-bottom: -30px"></div>
<div style="width: 70px; position: relative; z-index: 1;">
  <a style="display: block; width: 70px; height: 30px" href="http://maps.google.com/"></a>   
</div>

NOTE: The div can, of course, be easily deleted by the user.

Upvotes: 1

Mano Marks
Mano Marks

Reputation: 8819

Not using a Street View Panorama there isn't, but maybe instead you want to use the Street View Image API.

Upvotes: 2

Related Questions