diff --git a/bench/styles/benchmarks.js b/bench/styles/benchmarks.js index daa9b691645..f72997a160a 100644 --- a/bench/styles/benchmarks.js +++ b/bench/styles/benchmarks.js @@ -1,7 +1,7 @@ import mapboxgl from '../../src'; import accessToken from '../lib/access_token'; import locationsWithTileID from '../lib/locations_with_tile_id'; -import { benchmark: benchmarkLocations } from '@mapbox/gazetteer'; +import {benchmark} from '@mapbox/gazetteer'; import StyleLayerCreate from '../benchmarks/style_layer_create'; import Validate from '../benchmarks/style_validate'; import Layout from '../benchmarks/layout'; @@ -11,7 +11,7 @@ import QueryBox from '../benchmarks/query_box'; import getWorkerPool from '../../src/util/global_worker_pool'; -const locations = locationsWithTileID(benchmarkLocations.features); +const locations = locationsWithTileID(benchmark.features); mapboxgl.accessToken = accessToken; diff --git a/bench/versions/benchmarks.js b/bench/versions/benchmarks.js index f129c908e61..90cce0c95ce 100644 --- a/bench/versions/benchmarks.js +++ b/bench/versions/benchmarks.js @@ -1,7 +1,7 @@ import mapboxgl from '../../src'; import accessToken from '../lib/access_token'; import locationsWithTileID from '../lib/locations_with_tile_id'; -import { benchmark: benchmarkLocations } from '@mapbox/gazetteer'; +import {benchmark} from '@mapbox/gazetteer'; import Layout from '../benchmarks/layout'; import LayoutDDS from '../benchmarks/layout_dds'; import SymbolLayout from '../benchmarks/symbol_layout'; @@ -21,7 +21,7 @@ import FilterEvaluate from '../benchmarks/filter_evaluate'; import getWorkerPool from '../../src/util/global_worker_pool'; -const styleLocations = locationsWithTileID(benchmarkLocations.features); +const styleLocations = locationsWithTileID(benchmark.features); mapboxgl.accessToken = accessToken; @@ -29,9 +29,9 @@ window.mapboxglBenchmarks = window.mapboxglBenchmarks || {}; const version = process.env.BENCHMARK_VERSION; -function register(name, benchmark) { +function register(name, bench) { window.mapboxglBenchmarks[name] = window.mapboxglBenchmarks[name] || {}; - window.mapboxglBenchmarks[name][version] = benchmark; + window.mapboxglBenchmarks[name][version] = bench; } const style = 'mapbox://styles/mapbox/streets-v10';