DEV Community

Cover image for Svelte with the ArcGIS API for JavaScript
Rene Rubalcava
Rene Rubalcava

Posted on • Originally published at odoe.net

Svelte with the ArcGIS API for JavaScript

If you haven't seen it yet, Rich Harris of the New York Times did a presentation on the latest release of Svelte. Svelte has been around for a little while and it's not really a framework. It's a compiler that can introspect your code and do some really interesting things, such as know when you are using something as state for your DOM.

Another interesting bit in today's JavaScript landscape is that Svelte does not use a virtual DOM, it updates the DOM in place based on how you are using it.

Since its latest release, I have gotten a number of questions on how it can be used with the ArcGIS API for JavaScript. I enjoy doing these mashups, so I spent some time simply around integration.

Getting Started

When you first install your Svelte application, it's silly simple to add the ArcGIS API for JavaScript. Go into the public folder and add the script tag to the head of the index.html file.

<head>
    <meta charset='utf8'>
    <meta name='viewport' content='width=device-width'>
    <title>Svelte app</title>
    <link rel='stylesheet' href='global.css'>
    <link rel='stylesheet' href='bundle.css'>
        <link rel="stylesheet" href="https://js.arcgis.com/4.11/esri/themes/light/main.css">
    <script src="https://js.arcgis.com/4.11/"></script>
</head>
Enter fullscreen mode Exit fullscreen mode

Once you do that, you can directly into the App.svelte file and use the AMD loader of the API to load your mappy stuff.

<!-- src/App.svelte -->
<script>
    export let centerText;

    require(["esri/Map", "esri/views/MapView"], function(Map, MapView) {
        const map = new Map({
            basemap: "streets"
        });

        const view = new MapView({
            container: "viewDiv",
            map: map,
            zoom: 4,
            center: [15, 65] // longitude, latitude
        });

        view.watch('center', center => {
            const { latitude, longitude } = center;
            centerText = `Lat: ${ latitude.toFixed(2)} | Lon: ${ longitude.toFixed(2) }`;
        });
    });
</script>

<style>
    #root {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
    }
    #viewDiv {
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
    }
    h1 {
        width: 100%;
        text-align: center;
        color: dodgerblue;
    }
</style>

<div id="root">
    <h1>{centerText}</h1>
    <div id="viewDiv"></div>
</div>
Enter fullscreen mode Exit fullscreen mode

So yeah, Svelte has a file extension. If you've used Vue, this probably seems really familiar to you. Your editor may complain about not having the typings for require installed, but that can be ignored.

Side note - I can see the benefits of this for developers to keep all their component logic, styles, and UI in the same place, and if you're already doing css-in-js, you can't complain about this! I'm not sure I'm a big fan, but again, I don't use Svelte or Vue on a regular basis.

At this point, it just works. You should have an app that looks like this.

svelte and arcgis javascript api

Ok, so that's cool... but it could be cooler.

Let's be cooler

Svelte doesn't use webpack, it uses rollup. This makes things so much easier for us.

In the rollup.config.js, let's change the output to amd.

// rollup.config.js
...
output: {
  sourcemap: true,
  format: 'amd',
  name: 'app',
  file: 'public/bundle.js'
},
...
Enter fullscreen mode Exit fullscreen mode

Now we can update the index.html page to use the AMD loader of the ArcGIS API for JavaScript to load the module that Svelte will create.

<script>
  // define app as a dojo package
  window.dojoConfig = {
    packages: [
      {
        name: 'app',
        location: window.location.pathname.substring(0, window.location.pathname.lastIndexOf('/')) + '/'
      }
    ]
  }
</script>
<script src="https://js.arcgis.com/4.11/"></script>
</head>
<body>
<script>
  require(['app/bundle']);
</script>
</body>
Enter fullscreen mode Exit fullscreen mode

I'll create a file that will handle all my ArcGIS API for JavaScript code separate from Svelte.

// src/initMap.js
export async function initmap() {
  const [Map, MapView] = await Promise.all([
    import("esri/Map"),
    import("esri/views/MapView")
  ]);

  const map = new Map({
    basemap: "streets"
  });

  const view = new MapView({
    container: "viewDiv",
    map: map,
    zoom: 4,
    center: [15, 65]
  });

  return view;
}
Enter fullscreen mode Exit fullscreen mode

Now I can use it in my Svelte file.

// App.svelte
<script>
    import { initmap } from "./initmap";

    export let centerText = "Loading...";

    const load = async () => {
      const view = await initmap();
      view.watch("center", center => {
        const { latitude, longitude } = center;
        centerText = `Lat: ${latitude.toFixed(2)} | Lon: ${longitude.toFixed(2)}`;
      });
    };

    load();
</script>
Enter fullscreen mode Exit fullscreen mode

And my application will look the same!

You can see the source code for this application on github.

Summary

At the end of the day, it's not really difficult to integrate the ArcGIS API for JavaScript with Svelte. I like what Svelte is doing, I think it's got JavaScript developers thinking and keeping everyone on their toes. It doesn't really have a good TypeScript story at the moment unfortunately, but I think they are working on it!

So go on, give it a shot, have some fun and try something new!

Be sure to sign up for my newsletter to stay up to date with my latest content!

Top comments (0)