Skip to content

Latest commit

 

History

History

basemap

OpenStreetMap Vecto

🚧 🚧 Work in progress 🚧 🚧

This directory contains the configuration files for a general-purpose map. It is used to generate vector tiles and to produce a Mapbox style inspired by OpenStreetMap Carto.

Requirements

A PostgreSQL database with the PostGIS extension should be accessible with the following jdbc settings:

jdbc:postgresql://localhost:5432/baremaps?user=baremaps&password=baremaps

Importing the data

Assuming that the necessary requirements have been installed, the database can be populated with the following command.

baremaps workflow execute --file import.js

Updating the data

The data can be updated with the following command. The update workflow will download the latest changes from the OpenStreetMap API and apply them to the database.

baremaps workflow execute --file update.js

Serving the tiles and the style in dev mode

The development server can be started with the following command.

baremaps map dev --log-level DEBUG \
  --tileset 'tileset.js' \
  --style 'style.js'

Editing the tileset

The configuration format used in the tileset.js file extends the TileJSON specification. Simply put, it adds in the ability to describe the vector_tiles and their content with SQL queries that follow the PostGIS dialect.

{
  "tilejson": "2.2.0",
  "tiles": [
    "http://localhost:9000/tiles/{z}/{x}/{y}.mvt"
  ],
  "vector_layers": [
    {
      "id": "aerialway",
      "queries": [
        {
          "minzoom": 14,
          "maxzoom": 20,
          "sql": "SELECT id, tags, geom FROM osm_ways_z${zoom} WHERE tags ? 'aerialway'"
        }
      ]
    }
  ]
}

Editing the style

The configuration format used in the line.js file follows the Mapbox style specification. Baremaps integrates Maputnik and most of the modifications will take place in the browser.

Tools

Contributing

As a lot of work remains to be done, contributions and feedbacks are welcome.