Skip to content

Commit

Permalink
update golden images
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoji Chen committed Jan 16, 2020
1 parent ce9a1ac commit b3862cc
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 2 deletions.
Binary file modified test/render/golden-images/first-person.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/render/golden-images/path-billboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed test/render/golden-images/path-maker.png
Binary file not shown.
Binary file modified test/render/golden-images/path-meter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed test/render/golden-images/path-outline.png
Binary file not shown.
5 changes: 3 additions & 2 deletions test/render/test-cases/views.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {COORDINATE_SYSTEM, OrthographicView, MapView, FirstPersonView} from '@deck.gl/core';
import {ScatterplotLayer, GeoJsonLayer} from '@deck.gl/layers';
import {parseColor} from '../../../examples/layer-browser/src/utils/color';

import * as dataSamples from 'deck.gl-test/data';
import * as h3 from 'h3-js';
Expand Down Expand Up @@ -27,8 +28,8 @@ export default [
data: dataSamples.geojson,
opacity: 0.8,
getRadius: 500,
getFillColor: [255, 200, 0],
getLineColor: [0, 0, 255],
getFillColor: f => parseColor(f.properties.fill),
getLineColor: f => parseColor(f.properties.stroke),
extruded: true,
wireframe: true,
getElevation: 500,
Expand Down

0 comments on commit b3862cc

Please sign in to comment.