Skip to content

Commit 85eb619

Browse files
committed
prod asset ID updates
1 parent f74fa57 commit 85eb619

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

packages/engine/Source/Scene/Google2DImageryProvider.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const trailingSlashRegex = /\/$/;
4747
* @example
4848
* // Google 2D imagery provider
4949
* const googleTilesProvider = Cesium.Google2DImageryProvider.fromIonAssetId({
50-
* assetId: 1687
50+
* assetId: 3830184
5151
* });
5252
* @example
5353
* // Use your own Google api key
@@ -310,12 +310,12 @@ Object.defineProperties(Google2DImageryProvider.prototype, {
310310
* @example
311311
* // Google 2D imagery provider
312312
* const googleTilesProvider = Cesium.Google2DImageryProvider.fromIonAssetId({
313-
* assetId: 1687
313+
* assetId: 3830184
314314
* });
315315
* @example
316316
* // Google 2D roadmap overlay with custom styles
317317
* const googleTileProvider = Cesium.Google2DImageryProvider.fromIonAssetId({
318-
* assetId: 1687,
318+
* assetId: 3830184,
319319
* overlayLayerType: "layerRoadmap",
320320
* styles: [
321321
* {

packages/widgets/Source/BaseLayerPicker/createDefaultImageryProviderViewModels.js

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,10 @@ of the world.\nhttp://www.openstreetmap.org",
308308
iconUrl: buildModuleUrl(
309309
"Widgets/Images/ImageryProviders/googleSatellite.png",
310310
),
311-
tooltip: "Imagery",
311+
tooltip: "Imagery from Google Maps",
312312
category: "Cesium ion",
313313
creationFunction: function () {
314-
return IonImageryProvider.fromAssetId(1685);
314+
return IonImageryProvider.fromAssetId(3830182);
315315
},
316316
}),
317317
);
@@ -322,10 +322,10 @@ of the world.\nhttp://www.openstreetmap.org",
322322
iconUrl: buildModuleUrl(
323323
"Widgets/Images/ImageryProviders/googleSatelliteLabels.png",
324324
),
325-
tooltip: "Imagery with place labels",
325+
tooltip: "Imagery with place labels from Google Maps",
326326
category: "Cesium ion",
327327
creationFunction: function () {
328-
return IonImageryProvider.fromAssetId(1686);
328+
return IonImageryProvider.fromAssetId(3830183);
329329
},
330330
}),
331331
);
@@ -336,10 +336,11 @@ of the world.\nhttp://www.openstreetmap.org",
336336
iconUrl: buildModuleUrl(
337337
"Widgets/Images/ImageryProviders/googleRoadmap.png",
338338
),
339-
tooltip: "Labeled roads and other features on a base landscape",
339+
tooltip:
340+
"Labeled roads and other features on a base landscape from Google Maps",
340341
category: "Cesium ion",
341342
creationFunction: function () {
342-
return IonImageryProvider.fromAssetId(1687);
343+
return IonImageryProvider.fromAssetId(3830184);
343344
},
344345
}),
345346
);
@@ -350,10 +351,11 @@ of the world.\nhttp://www.openstreetmap.org",
350351
iconUrl: buildModuleUrl(
351352
"Widgets/Images/ImageryProviders/googleLabels.png",
352353
),
353-
tooltip: "Place labels to combine with other imagery such as Sentinel-2",
354+
tooltip:
355+
"Place labels from Google Maps to combine with other imagery such as Sentinel-2",
354356
category: "Cesium ion",
355357
creationFunction: function () {
356-
return IonImageryProvider.fromAssetId(1688);
358+
return IonImageryProvider.fromAssetId(3830185);
357359
},
358360
}),
359361
);
@@ -365,10 +367,10 @@ of the world.\nhttp://www.openstreetmap.org",
365367
"Widgets/Images/ImageryProviders/googleContour.png",
366368
),
367369
tooltip:
368-
"Hillshade mapping, contour lines, natural features (roadmap features hidden)",
370+
"Hillshade mapping, contour lines, natural features (roadmap features hidden) from Google Maps",
369371
category: "Cesium ion",
370372
creationFunction: function () {
371-
return IonImageryProvider.fromAssetId(1689);
373+
return IonImageryProvider.fromAssetId(3830186);
372374
},
373375
}),
374376
);

0 commit comments

Comments
 (0)