release: bump version to 0.51.1
This commit is contained in:
@@ -38,7 +38,7 @@ const BGP_COLLECTOR_RENDER_ORDER = 4.4;
|
||||
const BGP_COLLECTOR_ALTITUDE_OFFSET = BGP_CONFIG.collectorAltitudeOffset;
|
||||
const BGP_COLLECTOR_POINT_SIZE = 36;
|
||||
const BGP_COLLECTOR_ICON_FIT_SIZE = 60;
|
||||
const BGP_COLLECTOR_ICON_SOURCE = "/earth/assets/icons/bgp-broadcast-pin.svg";
|
||||
const BGP_COLLECTOR_ICON_SOURCE = new URL("../assets/icons/bgp-broadcast-pin.svg", import.meta.url).href;
|
||||
const BGP_COLLECTOR_HOVER_SCALE = 1.08;
|
||||
const BGP_COLLECTOR_LOCKED_SCALE = 1.12;
|
||||
const BGP_COLLECTOR_PULSE_AMPLITUDE = 0.14;
|
||||
|
||||
@@ -12,9 +12,9 @@ const COMPUTE_CENTER_POINT_SIZE = 36;
|
||||
const COMPUTE_CENTER_ICON_FIT_SIZE = 60;
|
||||
const COMPUTE_CENTER_ATLAS_CELL_SIZE = 128;
|
||||
const COMPUTE_CENTER_ICON_SOURCES = {
|
||||
supercomputer: "/earth/assets/icons/compute-supercomputer.svg",
|
||||
gpu_cluster: "/earth/assets/icons/compute-gpu-cluster.svg",
|
||||
infrastructure: "/earth/assets/icons/compute-hdd-network.svg",
|
||||
supercomputer: new URL("../assets/icons/compute-supercomputer.svg", import.meta.url).href,
|
||||
gpu_cluster: new URL("../assets/icons/compute-gpu-cluster.svg", import.meta.url).href,
|
||||
infrastructure: new URL("../assets/icons/compute-hdd-network.svg", import.meta.url).href,
|
||||
};
|
||||
let showComputeCenters = true;
|
||||
let supercomputerCount = 0;
|
||||
|
||||
@@ -177,7 +177,7 @@ export const TERRAIN_CONFIG = {
|
||||
};
|
||||
|
||||
export const COUNTRY_BOUNDARY_CONFIG = {
|
||||
dataPath: "/earth/data/countries-admin0.min.geojson",
|
||||
dataPath: new URL("../data/countries-admin0.min.geojson", import.meta.url).href,
|
||||
lineAltitudeOffset: 0.115,
|
||||
hoverAltitudeOffset: 0.14,
|
||||
lineColor: 0x7fc7ff,
|
||||
|
||||
Reference in New Issue
Block a user