[wip] Add width, speed and pane options for Globe

This commit is contained in:
2022-08-29 18:36:51 +02:00
parent eec3049a2c
commit ea6cfa2ee2
3 changed files with 53 additions and 47 deletions

View File

@@ -13,6 +13,9 @@
export let type: string = undefined export let type: string = undefined
export let enableMarkers: boolean = true export let enableMarkers: boolean = true
export let speed: number = 0.003
export let pane: boolean = import.meta.env.DEV
export let width: number = undefined
let innerWidth: number let innerWidth: number
let globeParentEl: HTMLElement, globeEl: HTMLElement let globeParentEl: HTMLElement, globeEl: HTMLElement
@@ -42,11 +45,11 @@
mapFile: `/images/globe-map-${globeResolution}.png`, mapFile: `/images/globe-map-${globeResolution}.png`,
dpr: Math.min(Math.round(window.devicePixelRatio), 2), dpr: Math.min(Math.round(window.devicePixelRatio), 2),
autoRotate: true, autoRotate: true,
speed: 0.003, speed,
rotationStart: randomContinent.rotation, rotationStart: randomContinent.rotation,
enableMarkers, enableMarkers,
markers, markers,
pane: import.meta.env.DEV, pane,
}) })
// TODO: Define cluster locations and position it // TODO: Define cluster locations and position it
@@ -112,11 +115,13 @@
<div class="globe" bind:this={globeParentEl} <div class="globe" bind:this={globeParentEl}
class:is-cropped={type === 'cropped'} class:is-cropped={type === 'cropped'}
style:--width="{width}px"
> >
<div class="globe__inner"> <div class="globe__inner">
<div class="globe__canvas" bind:this={globeEl} /> <div class="globe__canvas" bind:this={globeEl} />
</div> </div>
{#if enableMarkers}
<ul class="globe__markers"> <ul class="globe__markers">
{#each markers as { name, slug, country, lat, lng }} {#each markers as { name, slug, country, lat, lng }}
<li class="globe__marker" data-location={slug} data-lat={lat} data-lng={lng}> <li class="globe__marker" data-location={slug} data-lat={lat} data-lng={lng}>
@@ -162,4 +167,5 @@
</button> </button>
</div> </div>
{/if} {/if}
{/if}
</div> </div>

View File

@@ -125,7 +125,7 @@ export class Globe {
this.addEvents() this.addEvents()
// Setup markers // Setup markers
if (this.markers) { if (this.enableMarkers && this.markers) {
this.setupMarkers() this.setupMarkers()
} }
} }

View File

@@ -1,14 +1,14 @@
// Globe // Globe
.globe { .globe {
--width: clamp(700px, 100vw, 1315px);
position: relative; position: relative;
z-index: 10; z-index: 10;
user-select: none; user-select: none;
// Inner // Inner
&__inner { &__inner {
position: relative; position: relative;
width: clamp(700px, 100vw, 1315px); width: var(--width);
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;