I want to embed a google javascript map to my web site.
In the docs at: https://developers.google.com/maps/documentation/javascript/tutorial
It says that I should load the scripts using my api key in the url:
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"
async defer></script>
Doesn't this mean that anyone can get my key? All of my other google api keys, are server side, and are not in my source control. It seems here that this key is exposed - which makes me a bit uneasy.
I feel like I'm missing something, is there a reasonable way to hide this key - or is it meant to be that public, and if so, how do I prevent abuse.