How do I add an adress to be displayed on the map, using this API from google. Insted of using the embed option?
<script>
function myMap(){
var mapCanvas = document.getElementById("map");
var mapOptions = {
center: new google.maps.LatLng(51.5, -0.2), zoom:15
};
var map = new google.maps.Map(mapCanvas, mapOptions);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=my_key">
</script>