Coder Social home page Coder Social logo

Comments (4)

wfendler avatar wfendler commented on May 12, 2024

Updated svelte and sveltekit and it seems to have resolved the issue.

from svelte-mapbox.

wfendler avatar wfendler commented on May 12, 2024

Sorry, closed too soon. The error doesn't show up right away. It only happens after a few refreshes/hot-reloads.

package.json

{
  "name": "my-app",
  "version": "0.0.1",
  "scripts": {
    "dev": "svelte-kit dev",
    "build": "svelte-kit build",
    "preview": "svelte-kit preview"
  },
  "devDependencies": {
    "@sveltejs/kit": "^1.0.0-next.192",
    "svelte": "^3.44.0"
  },
  "type": "module",
  "dependencies": {
    "@beyonk/svelte-mapbox": "^8.1.4"
  }
}

index.svelte

<script>
  import { Map, Marker } from '@beyonk/svelte-mapbox';
  import { session } from '$app/stores';
  import { browser } from '$app/env';

  if (browser) {
    // setting $session to anything at all seems to cause the error
    $session = 'asdf'
  }

  let mapComponent;

  function onReady() {
    mapComponent.flyTo({ center: [-74.0060152, 40.7127281] });
  }
</script>

<div>
  <h1>Map</h1>
  <div class="wrapper">
    <Map
      accessToken={import.meta.env.VITE_MAPBOX_ACCESS_TOKEN}
      bind:this={mapComponent}
      on:ready={onReady}
    >
      <Marker lat="-74.0060152" lng="40.7127281" label="NYC" />
    </Map>
  </div>
</div>

<style>
  .wrapper {
    height: 500px;
    width: 500px;
    border: 1px solid black;
  }
</style>

from svelte-mapbox.

wfendler avatar wfendler commented on May 12, 2024

I've tried to put together a minimal recreation here:

https://stackblitz.com/edit/svelte-kit-qdaku8?file=src/routes/index.svelte

from svelte-mapbox.

antony avatar antony commented on May 12, 2024

Thanks for the reproduction. I'll have a look and see if I can find out what the issue is as soon as possible.

from svelte-mapbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.