In the latest google maps update there are hyperlinks on phone numbers that initiates a google hangouts (click to call) function.
An example can be seen here if you're logged in and hover over the hyperlinked phone number you'll see it says, "Call Via Hangouts".
This is not the same as the Google Hangouts API which creates a button like this:
Using this source
<script src="https://apis.google.com/js/platform.js" async defer></script>
<g:hangout render="createhangout" invites="[{ id : '+1800FREE411', invite_type : 'PHONE' }]"></g:hangout>
Basically I want the same as the google maps links... an html link that initiates the call without the button image.
Any easy way to get rid of the button and make the link the phone number?