trailpack-mapnik

0.5.23 • Public • Published

trailpack-mapnik

NPM version Build status Dependency Status Code Climate

Setup a Map Server using Trails, Mapnik, and Tilelive. Supports tile caching with S3.

Compatibility

  • Node 6 or higher
  • Mapnik 3.0.9 or higher (tested on 3.0.9)
  • OSX or Linux (binaries pre-built for linux and darwin platforms)

Install

$ npm install --save trailpack-mapnik

Configure

// config/main.js
module.exports = {
  packs: [
    // ... other trailpacks
    require('trailpack-mapnik')
  ]
}
// config/mapnik.js
const path = require('path')
module.exports = {
  /**
   * Define paths to mapnik map configs
   */
  maps: {
    basemap: {
      pathname: path.resolve(__dirname, 'basemap.xml')
    },
    someOverlay: {
      pathname: path.resolve(__dirname, 'vector_overlay.xml')
    }
  },
  /**
   * Additional Tilelive protocols (e.g. vector)
   */
  protocols: [
    require('tilelive-additionalplugin')
  ]
}

License

MIT

Maintained By

Package Sidebar

Install

npm i trailpack-mapnik

Homepage

trailsjs.io

Weekly Downloads

1

Version

0.5.23

License

MIT

Last publish

Collaborators

  • langa
  • trails