Skip to content

Commit

Permalink
release 0.4.13
Browse files Browse the repository at this point in the history
also add google maps to alpha labs
  • Loading branch information
kfarr committed Mar 29, 2024
1 parent 39cca40 commit 22f3f8b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/development/alpha-labs.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,22 @@ newEl.setAttribute('data-layer-name', 'Plane Geometry • Traffic Circle Asphalt
newEl.setAttribute('material', 'src: #asphalt-texture; repeat: 5 5;')
parentEl = document.querySelector('#street-container')
parentEl.appendChild(newEl)
```

## Google 3D Map Tiles

This code snippet adds an entity to load and display 3d tiles from Google Maps Tiles API 3D Tiles endpoint. This will break your scene and you cannot save it yet, so beware before testing.

```
document.body.appendChild(document.createElement('script')).src = 'https://cdn.jsdelivr.net/npm/[email protected]/src/lib/aframe-loader-3dtiles-component.min.js';
document.querySelector('#reference-layers').innerHTML = `
<a-entity id="tileset" data-no-pause
data-layer-name="Aerial Imagery • Google 3D Tiles"
loader-3dtiles="
lat: 37.77522354250163;
long: -122.41931773049723;
height: -16.5;
url: https://tile.googleapis.com/v1/3dtiles/root.json; googleApiKey: AIzaSyAQshwLVKTpwTfPJxFEkEzOdP_cgmixTCQ; geoTransform: WGS84Cartesian; maximumSSE: 48; maximumMem: 400; cameraEl: #camera">
</a-entity>`
document.querySelector('#tileset').play()
```
7 changes: 7 additions & 0 deletions docs/development/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ sidebar_position: 1

# Product Releases

## [3DStreet Editor 0.4.13](https://github.com/3DStreet/3dstreet-editor/releases/tag/0.4.13) - 29 Mar 2024
* Add categories for mixin list in right panel
* Fix button label styling for smaller width devices
* feat(ga): added save scene actions and new account creation
* add no pause attribute support and camera fix for 3d tiles
* use logarithmicDepthBuffer to reduce z-fighting

## [3DStreet Core 0.4.12](https://github.com/3DStreet/3dstreet/releases/tag/0.4.12) - 28 Mar 2024
* Update svg component with second material support for custom path bevels
* Support for Google Maps 3D Tiles component (v1 for testing only)
Expand Down

0 comments on commit 22f3f8b

Please sign in to comment.