Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to update the version of Chrome? #17

Open
Gia37 opened this issue May 5, 2023 · 1 comment
Open

How to update the version of Chrome? #17

Gia37 opened this issue May 5, 2023 · 1 comment

Comments

@Gia37
Copy link

Gia37 commented May 5, 2023

I try to open a project in liquid galaxy on the ArcGis web page, it lets me enter the username and password, navigate the page but when I want to open a project the screens remain blank. I checked and the version of Chrome it has is 75, I think that may be it but I tried to update the version from the servers and it reverts the update, could the problem be if Chrome is outdated? o Does anyone know how to view ArcGis Online from the liquid galaxy screens?

@ParamThakkar123
Copy link

Here is one way to view ArcGIS Online content on a Liquid Galaxy display:

// Set up CesiumJS on the Liquid Galaxy 
const viewer = new Cesium.Viewer('cesiumContainer');

// Add the ArcGIS terrain provider
const terrainProvider = new Cesium.ArcGISTiledElevationTerrainProvider({
  url: 'https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer'
});
viewer.terrainProvider = terrainProvider;

// Add the ArcGIS world imagery layer
const imageryProvider = new Cesium.ArcGISImageServerTerrainProvider({
  url: 'https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer'
});
const imageryLayer = viewer.imageryLayers.addImageryProvider(imageryProvider);

// Set initial view
viewer.scene.camera.setView({
  destination: Cesium.Cartesian3.fromDegrees(-117.16, 32.71, 15000.0) 
});

The key steps are:

  1. Set up CesiumJS on the Liquid Galaxy
  2. Add ArcGIS terrain and imagery providers
  3. Configure initial view location

This will display the ArcGIS Online global imagery and terrain in the Liquid Galaxy system. You can then navigate and explore it in 3D.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants