Assigned
Status Update
Comments
br...@google.com <br...@google.com>
br...@google.com <br...@google.com> #2
ra...@gmail.com <ra...@gmail.com> #3
Please find the attached KMZ file.
Please have a look below JSFiddle code having the same sample html code which I am using.
https://jsfiddle.net/1e2m80zy/4/
Please have a look below JSFiddle code having the same sample html code which I am using.
br...@google.com <br...@google.com> #4
Thank you for providing the requested details.
We are currently looking into this and will get back to you as soon as we have an update.
ra...@gmail.com <ra...@gmail.com> #5
Could you please update us on this ASAP.
ra...@gmail.com <ra...@gmail.com> #6
Hello Team,
Could you please update us on this ASAP.
Thanks
Could you please update us on this ASAP.
Thanks
Description
===========================================================================================
#REMINDER: Please do not disclose any possible PII such as: email address, IP, contact number, any part of name, project numbers and billing accounts as these information may violate security and privacy. Comments or attachments that include PII will be removed and restricted from public viewing.
Furthermore, please refrain from replying to a comment as this will make your email address visible. Instead, you may use the Issue Tracker’s comment feature for your replies.
It is OK to share your API Project ID, but _not_ API keys or client ID credentials.
To learn more about personal data, visit
===========================================================================================
# Describe your issue
I have following version
google.maps.version = '3.60.4'
I have crated HTML page to load KMZ file in Google map. But it is not showing locations with basic details as it is showing while importing in Google map.
Below is HTML code:
<!DOCTYPE html>
<html>
<head>
<title>Display KMZ on Google Maps</title>
<script src="
<script>
let map;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
center: { lat: 25.8000, lng: 55.9500 },
zoom: 8
});
var kmzLayer = new google.maps.KmlLayer({
url: '
map: map
});
}
</script>
</head>
<body onload="initMap()">
<div id="map" style="height: 100%; width: 100%;"></div>
</body>
</html>
it is should show locations with details as attached image.
Thanks