Currently I am loading the google maps JS API from the google CDN like this in my hybrid mobile app.
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=places,geometry"></script>
Is there a clean, official, way to include this library locally in my resources? I cannot for exmaple find an official bower component, etc...
eg
<script type="text/javascript" src="lib/maps/api/js?libraries=places,geometry"></script>
Can I just download the JS file from the above URL and include it in the relevant folder in my web app?