You can simply send the Latitude and Longitude query string to Google Map in your href as follows:
<a href="https://maps.google.com/?q=46.860191,3.779297"> <img src="PATH TO YOUR IMAGE"/> </a>
Or send address :
<a href="https://maps.google.com/?q=58250 Montaron, France"> <img src="PATH TO YOUR IMAGE"/> </a>
There are many parameters that you can set when sending a request. For example, if you add &t=m at the end of the href link, a normal map will be displayed instead of the satellite map. Like this:
<a href="https://maps.google.com/?q=58250 Montaron, France&t=m"> <img src="PATH TO YOUR IMAGE"/> </a>
For a complete list of options, see Everything you never wanted to know about Google Maps options or Query string options in Google Maps .
See jsFiddle Demo
source share