hello,
I'm currently trying to display a google map on my custom visual that I'm developing.
In fact, I don't know how can I import the namespece, and the API.
Here is the code I'm trying to use :
<script> var map; function initMap() { map = new google.maps.Map(document.getElementById('map'), { center: {lat: -34.397, lng: 150.644}, zoom: 8 }); }</script><script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAyARcNvQVVfuYxt8JGT2ndho2_010AWkQ&callback=initMap" async defer></script></div>
Thank you