Skip to main content

Photorealistic 3D Tiles from Google Maps Platform in CesiumJS

This is a quickstart guide to loading Photorealistic 3D Tiles content into CesiumJS.

Denver, Colorado, USA, using Photorealistic 3D Tiles in CesiumJS. Elitch Gardens is in the foreground, Ball Arena toward the middle, and the downtown skyline in the back.

Denver, Colorado, USA, using Photorealistic 3D Tiles in CesiumJS.

You’ll learn how to:

  • Add a photorealistic global base layer using the Google Maps Platform Map Tiles API and 3D Tiles.
  • Use the geocoder to locate areas of interest.

Prerequisites

1Load Photorealistic 3D Tiles

1Open the Hello World example in Sandcastle, or begin with a CesiumJS app based on the CesiumJS Quickstart tutorial

2Set Cesium.Ion.defaultAccessToken to your Cesium ion access token. In the following snippet, replace YOUR_ACCESS_TOKEN with your Cesium ion access token.

Cesium.Ion.defaultAccessToken = "<YOUR_ACCESS_TOKEN>";

3Create a Cesium Viewer. Since the Google Maps API provides tiles that cover the extent of the globe, turn off the default terrain and imagery layers by providing the globe: false option to the Viewer.

const viewer = new Cesium.Viewer("cesiumContainer", {
    globe: false,
});

4Create a 3D Tileset using the Google Maps API.

Let’s add a global layer of Photorealistic 3D Tiles to our scene. Photorealistic 3D Tiles can be streamed in CesiumJS as a Cesium3DTileset.

try {
  const tileset = await Cesium.createGooglePhotorealistic3DTileset();
  viewer.scene.primitives.add(tileset);
} catch (error) {
  console.log(`Failed to load tileset: ${error}`);
}
Globe focused on North America

2Use the geocoder to locate areas of interest

1Click the magnifying glass icon in the upper right corner to open the geocoder.

2Type the name of an area of interest into the search bar, such as “Philadelphia, PA,” and press enter. The Cesium Viewer will zoom to the location.

Type the name of an area of interest into the search bar, such as “Philadelphia, PA,” and press enter. The Cesium Viewer will zoom to the location.

3Use the mouse and keyboard to zoom, pan, and tilt to explore the scene in full 3D. Right click and drag to zoom. Left click and drag to pan. Tilt the camera by holding CTRL while dragging.

Use the mouse and keyboard to zoom, pan, and tilt to explore Philadelphia in full 3D.

Next steps

Try extending this app by adding a 3D model from Cesium ion or even by building a flight tracker.

Hot air balloon with the Cesium logo off the coast of northern California, USA, using Photorealistic 3D Tiles in CesiumJS.

Off the coast of northern California, USA, using Photorealistic 3D Tiles in CesiumJS.

Content and code examples at cesium.com/learn are available under the Apache 2.0 license. You can use the code examples in your commercial or non-commercial applications.