Forum Moderators: open
you can make an iframe into a link but
only at the expense of it's functionality.
Would that be acceptable?
does this help...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
<title>link over iframe</title>
<style media="screen">
#holder, #holder iframe, #holder a {
position:relative;
display:block;
width:600px;
height:450px;
border:0;
}
#holder a {
position:absolute;
top:0;
}
</style>
</head>
<body>
<div id="holder">
<iframe src="https://maps.google.co.uk/maps?q=Google+21+Corporate+Drive+Clifton+Park&output=embed"></iframe>
<a href="https://maps.google.com/" title="this is a link to Google maps"></a>
</div>
</body>
</html>
Sending link is not possible under Google API security.
It should be used iframe when you connect to Google map.