I have this function, the default function from google maps api tutorial, I have just added 2 parameters latt and lngg.
function initMap(latt,lngg) {
var uluru = {lat: latt , lng: lngg};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 15,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}
And I want to call it like they call it :
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAmjE35Pm1eDdyF6Vg3WC69opkqLIVt3GY&callback=initMap">
</script>
but using different parameters each time, because I will have 6000 maps, and I want to call the script for each function
I don't know if something like &callback=initMap(latt,lngg) is possible.
Thank you so much
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…