Using the vector tiles output

GeoServer supports “vector tile” output in addition to the more standard image tile output. While the standard WMS output will generate a georeferenced map image, a vector tile contains georeferenced vector data, clipped into tiles for easy retrieval.

This tutorial will show how to use the GeoServer vector tile output.

Note

This requires that the Vector Tiles extension is installed, which requires OpenGeo Suite Enterprise.

Why use vector tiles?

The advantages of vector tiles are;

  • Rendering is done by the client (for example, OpenLayers), not by the server. This allows different maps/applications to style a map differently without having to reconfigure GeoServer.
  • The size of a vector tile is usually smaller than an image tile, resulting in faster data transfer and lower bandwidth usage.
  • GeoWebCache, embedded with GeoServer efficiently stores the vector tile data. Since styling is done by the client, not the server, GeoWebCache only needs to store one tile for all different styles.
  • Because the vector data is available on the client, very high-resolution maps can be drawn without corresponding increases in bandwidth.
  • The client has native access to the actual feature information (attributes and geometry), allowing for very sophisticated rendering.

On the other hand, the main disadvantage of vector tiles is that the geographic data may need to be pre-processed to allow the client to do the drawings it requires (similar to preprocessing data for image maps). With this in mind, vector tiles should only be used for rendering.

Vector tile formats

GeoServer can also produce vector tiles in three formats: GeoJSON, TopoJSON, and MapBox Vector (MVT). These are also supported by OpenLayers 3 and other clients.

  • GeoJSON is the most human readable and the recommended format for people new to vector tiles.
  • MVT is the preferred format for production.
Format MIME Description
GeoJSON application/json;type=geojson Human readable, format (not tiles) widely supported
MapBox Vector (MVT) application/x-protobuf;type=mapbox-vector Highly compressed, widely supported by applications, not human readable
TopoJSON application/json;type=topojson Good for polygon coverages, human readable (but complex), not widely supported

Publish vector tiles in GeoWebCache

We’ll be publishing our vector tiles through GeoWebCache and publishing the layer in a custom OpenLayers application.

For this tutorial, we’ll be using the built-in layer opengeo:countries to show off the capabilities, though with slight modifications, any layer will do.

  1. In the GeoServer admin interface, click Tile Layers under Tile Caching.

    ../../_images/tilelayerslink.png

    Tile Layers

  2. Click opengeo:countries in the list of layers.

  3. By default the tile formats are image/jpeg and image/png. Check the boxes for the following vector tile formats:

    • application/json;type=geojson
    • application/json;type=topojson
    • application/x-protobuf;type=mapbox-vector
    ../../_images/tileformats.png

    Vector tile formats selected

  4. Click Save.

Our layer is now ready to be served.

Create OpenLayers application

  1. Create a www/vectortiles directory inside your GeoServer Data Directory.

    Note

    Please see the Installation section for your platform for the location of your GeoServer Data Directory.

  2. Download the latest version of OpenLayers.

  3. Extract the following files to from the downloaded archive to the directory created in step 1:

    • ol.js
    • ol-debug.js
    • ol.css
  4. In a text editor, create a new file with the following content:

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    <!DOCTYPE html>
    <html>
    <head>
      <title>Vector tiles</title>
      <script src="ol.js"></script>
      <link rel="stylesheet" href="ol.css">
      <style>
        html, body {
          font-family: sans-serif;
          width: 100%;
        }
        .map {
          height: 500px;
          width: 100%;
        }
      </style>
    </head>
    <body>
      <h3>Mapbox Protobuf - vector tiles</h3>
      <div id="map" class="map"></div>
      <script>
    
      var style_simple = new ol.style.Style({
        fill: new ol.style.Fill({
          color: '#ADD8E6'
        }),
        stroke: new ol.style.Stroke({
          color: '#880000',
          width: 1
        })
      });
    
      function simpleStyle(feature) {
        return style_simple;
      }
    
      var layer = 'opengeo:countries';
      var projection_epsg_no = '900913';
      var map = new ol.Map({
        target: 'map',
        view: new ol.View({
          center: [0, 0],
          zoom: 2
        }),
        layers: [new ol.layer.VectorTile({
          style:simpleStyle,
          source: new ol.source.VectorTile({
            tilePixelRatio: 1, // oversampling when > 1
            tileGrid: ol.tilegrid.createXYZ({maxZoom: 19}),
            format: new ol.format.MVT(),
            url: '/geoserver/gwc/service/tms/1.0.0/' + layer +
                '@EPSG%3A'+projection_epsg_no+'@pbf/{z}/{x}/{-y}.pbf'
          })
        })]
      });
      </script>
    </body>
    </html>
    
  5. Save this file in the directory created above as index.html.

  6. Navigate to http://localhost:8080/geoserver/www/vectortiles/index.html and verify that the output shows without any errors.

    Note

    If your GeoServer is deployed at a server other than http://localhost:8080/geoserver/, then please adjust the above URL.

    ../../_images/vectortileoutput.png

    Vector tile output

These tiles are being rendered by the OpenLayers client.

Styling vector tiles

Since these tiles are rendered in the client, we need only change the styling instructions inside the client application. No changes to GeoServer are required, and tiles will not have to be regenerated.

  1. Change the fill color to light green:

    23
    24
    25
    26
    27
    28
    29
    30
    31
    var style_simple = new ol.style.Style({
      fill: new ol.style.Fill({
        color: 'lightgreen'
      }),
       stroke: new ol.style.Stroke({
          color: '#880000',
          width: 1
        })
    }) ;
    
  2. Save the file and reload the application.

    ../../_images/vectortileoutputgreen.png

    Vector tile output with alternate color

  3. We can also do attributed-based styling. This dataset contains has a property (region_un) which contains the region the country is in. Let’s highlight countries in Africa by adding another style definition below the existing style:

    33
    34
    35
    36
    37
    38
    39
    40
    41
     var style_highlighted = new ol.style.Style({
       fill: new ol.style.Fill({
         color: 'yellow'
       }),
       stroke: new ol.style.Stroke({
         color: '#880000',
         width: 1
       })
     });
    
  4. Replace the existing style function:

    43
    44
    45
     function simpleStyle(feature) {
       return style_simple;
     }
    

    with the following:

    43
    44
    45
    46
    47
    48
     function simpleStyle(feature) {
       if (feature.get("region_un") == "Africa") {
         return style_highlighted;
       }
       return style_simple;
     }
    
  5. Save the file and reload the application.

    ../../_images/vectortileoutputafrica.png

    Vector tile output with Africa highlighted