How Interactivity Works with UTFGrid

Mapbox
maps for developers
5 min readSep 21, 2011

--

By Konstantin Käfer

Adding interactivity to millions of objects on a map requires some tricks. Tom stunningly visualized the inner workings of UTFGrid, an encoding scheme that efficiently encodes interactivity data for map tiles that has made its way into all of our projects, including TileMill, TileStream, and Wax, in his Visible Map. This also lets you explore the stages Wax takes to retrieve the interactivity information associated with a pixel.

While this is a good introduction to how UTFGrid brings interactivity to maps, in this post I’ll give a behind the scenes look at some of the design decisions we made to best use interactivity in our map design and hosting services.

Tiling data

Once your map has millions of objects to interact with, it’s no longer viable to have users download all of the data and cache it in the browser — it’s way too big. Loading lots of data like this also means that the time required to do lookups increases in a linear way. This rules out vectors and polygons as data transfer means, as Tom discussed in his Where 2.0 talk.

Luckily when you have millions of objects to show on a map, you can’t interact with them all at once anyway. Users might zoom in, bringing the majority out of scope, or there might be more items than physical pixels in the map. Taking inspiration from Google Maps, we decided to send data in tiles. This makes it viable to add interactivity to millions of objects on the map while limiting the data the user has to download to the region that is actually being viewed.

A look at how we tile interactivity data

From polygons to grids

Even with tiled data requests, there are still a lot of points and polygons and querying in polygons is an expensive operation, one that must be done every time the users moves the mouse. Creating a lookup table for each pixel solves that problem and makes lookup time linear. But with this approach it’s necessary to either calculate the lookup table in the browser, causing a significant initialization cost, or generate that table on the server and send it to the browser.

While JavaScript is generally fast, it’s still an interpreted language, and our maps will also be served on mobile devices where computing power is scarce. We want our maps to be as fast as possible, so we decided to generate them on the server. As it turns out, a two-dimensional lookup table is conceptually very similar to a plain image. However, we can’t use the actual map image because compression artifacts, overlaid data, antialiased gradients, or text don’t allow association of a pixel with a particular country. What we’d need is a plain image without antialiasing, with every feature having a different color. It turns out that Mapnik can do that thanks to Dane’s amazing work, and node-mapnik now supports rendering those “grids”.

(Ab)using UTF-8

Bringing the grid data to the client is still an issue. A 256x256 grid has 65,536 data points, requiring an efficient way to encode and decode it. As a first measure, we’re reducing the 256x256 grid to just 64x64, exploiting the fact that interaction with a single pixel is pretty hard anyway, especially on mobile devices. We still need to encode 16,384 data points. Encoding the grid as an actual PNG image would leverage PNG’s excellent zlib compression, however decoding the data in the browser is non-trivial because we’d have to paint the image to a canvas to access its pixels (or decode the PNG/zlib compression manually).

The easiest way to get plain data to a browser is to encode it as JSON, and that’s what we did. We encode the grid data into a JSON data structure by applying a couple of tricks. Each row is a string that contains one character for each column. Additionally, using JSON allows us to easily associate complex data structures with every pixel (or group of pixels when using a 64x64 grid).

To associate data with each pixel, we just associate each feature in a grid tile with a number, starting with 0, and include a mapping of that number to the actual data. Using plain Unicode strings has the advantage that we can essentially encode that kind of binary data into JSON. With UTF-8 as the transfer encoding, we get some additional benefits:

  • Requires only one byte for the first 93 features (see below for why this is exactly 93)
  • Automatically uses 2 and 3 bytes for each code point if required.
  • Every browser supports UTF-8 decoding

JavaScript uses UCS-2 encoding internally, so strings can only contain Unicode code points from the Basic Multilingual Plane (the code point 0 through 65,535), but given that our tiles are only 256x256 with grids only being 64x64 by default, that’s sufficient for our purposes.

JSON strings need to escape the non-printable control character code points 0 through 31 as well as " and \, so we’re just skipping those characters. Otherwise we’d end up with a bunch of literal ASCII \u0000 (6 bytes instead of 1). Let’s look at how we encode some characters:

  • 0: This number is guaranteed to occur in every grid tile. Using this algorithm, we add 32 which results in code point 32 (0x20). Displayed in ASCII, this is a space character and the binary representation is 0010 0000.
  • 93: Adding 32 makes this number greater than 34 and 92, so we have to add an additional 2 to skip " and \, resulting in the code point 127 (0x7f). In binary, this is 0111 1111.
  • 94: This number is above UTF-8’s 1 byte threshold. Expanding to 128 (0x80) requires encoding this as 2 bytes: 1100 0010 1000 0000.

When we do that with every pixel in the grid, we end up with something that looks like this:

A look at how we use UTF-8

Interestingly, our end result basically looks like ASCII art. This makes visual validation and sanity checks very easy.

We also observe that most of that data is very uniform, and gzipping the resulting JSON file typically results in grids that are typically just 1–3 KB. Decoding the grid in the browser is easy as well. We essentially just call grid[row].charCodeAt(col) to retrieve the Unicode code point and reverse the transformation to obtain the key for the associated data.

If you’re curious, have a look at the specification and be sure to check out Tom’s walk through of UTFGrid in Visible Maps.

--

--

mapping tools for developers + precise location data to change the way we explore the world