Assigned
Status Update
Comments
ra...@google.com <ra...@google.com> #2
Thank you for your suggestion!
We'll be reviewing this for further consideration. Please star this issue to get updates and leave comments for additional information. Please note that starring the issue also provides our product team with valuable feedback on the importance of the issue to our customers.
You can also check
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
===========================================================================================
What would you like to see us add to this API?What would you like to see us add to this API?
Feature to add multiple 3d objects by their own lat/ln/altitude in WebGLOverlayView.
What part of the API (please specify, a library, or the code module)?
WebGLOverlayView, Google Maps, THREEJS
Please describe how the feature should work:
on 3d object load, set position via lat/lng/alt
...or grab the 3d object after load and move to specified lat/lng/alt
currently looks like the only object to have this support is the camera with the camera.projectionMatrix
maybe a function similar to that,
EX:
let latLngAltitudeLiteral = {
lat: 3dobject.lat,
lng: 3dobject.lng,
altitude: 3dobject.alt
}
3dObject.matrix = new THREE.Matrix4().fromArray(transformer.fromLatLngAltitude(latLngAltitudeLiteral));
Please give a use case or explain where and why you need this feature:
I am building an interactive map to toggle locations and view the model at each of the locations.