Calle 16 Ave Sta Isabel

To display the real-time location on an HTML Google Maps map, you will need to use the browser's Geolocation API to get the user's real-time location. However, since I can't provide real-time updates, I'll show you how you can create a static map with the provided coordinates. Here is an example:

```html
<!DOCTYPE html>
<html>
<head>
<title>Real Time Location</title>
<style>
/* Styles to make the map fill the entire screen */
#map {
height: 400px; /* Change the height as desired */
width: 100%;
}
</style>
</head>
<body>
<!-- Div where the map will be displayed -->
<div id="map"></div>

<script>
// Function to initialize the map
function initMap() {
// Coordinates of the provided location
var location = {lat: 9.352218371878298, lng: -79.89554285370122};

// Create a new map in the div with id "map"
var map = new google.maps.Map(
document.getElementById('map'), {zoom: 15, center: location});

// Create a bookmark at the specified location
var marker = new google.maps.Marker({position: location, map: map});
}
</script>

<!-- Include the Google Maps API -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=TU_API_KEY&callback=initMap">
</script>
</body>
</html>
```

Remember to replace "YOUR_API_KEY" with your own Google Maps API key. This key is required to use the Google Maps API. You can obtain a Google Maps API key by following the instructions in the Google Maps documentation. Once you have your API key, replace "YOUR_API_KEY" in the code above. This code will display a map with a marker at the provided location.