Assigned
Status Update
Comments
ca...@google.com <ca...@google.com>
ca...@google.com <ca...@google.com> #2
Thank you for posting.
We are currently looking into this and will get back to you as soon as we have an update.
ab...@gmail.com <ab...@gmail.com> #3
Comment has been deleted.
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
# Please report the version of Google Maps API
# Open the developer console and type: 'google.maps.version' and then press enter.
# Example:
# > google.maps.version
# <- "3.34.7"
# What steps will reproduce the problem? Please also provide a code sample which demonstrates your issue (e.g. via
1. How to add polyline or polygon markers on Google map 3d (webGL).
2. We can use google.maps.marker.AdvancedMarkerView to add altitude but how to add a vertical line to point on the ground. Ref. Image attached.
const pinView = new google.maps.marker.PinView({
background: "#4b2e83",
borderColor: "#b7a57a",
glyphColor: "#b7a57a",
scale: 2.0,
});
const markerFloat = new google.maps.marker.AdvancedMarkerView({
map: map,
content: pinView.element,
position: { lat: map.getCenter().lat(), lng: map.getCenter().lng(), altitude: 30 },
});
3. I am using Google map API version beta with map_ID to load vector map (webGL)