Skip to content

cule/tilehut

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tile hut cover

Tilehut.js

A modest, but cozy home for your map tiles

Tilehut.js is a project by:

Introduction

Take all the best things about the interactivity of the web and couple it with the exploratory nature of maps, and you get the modern web map tile. Tiles are one of the fundamental building blocks of modern web maps, providing a clever solution to zoom, pan, click, and interact with the infinity of discoverable things living in geospace. Underlying map tiles is a tasty combination of awesome technologies like Mike Migurski's Tilestache and the brilliant tools being built by Mapbox.

Drawing from these inspiring developments in the web mapping world, we bring you Tilehut.js, a modest, but cozy home for your map tiles. Tilehut.js is built to serve the tiles for your average web mapping project and is essentially a simple wrapper around Mapbox's node-mbtiles. Tilehut.js is indeed a humble tile server and is certainly not a replacement for the all excellent support that comes with Mapbox hosting for those more demanding or bigger projects.

We're thrilled to bring you Tilehut.js and even more excited to see what projects you brew up! Happy mapping!

Your Own Hosted Tileserver in 5 Minutes

  1. Login to OpenShift and create a new application (the free account will give you already a 1GB tileserver)
  2. Set Application Type as "NodeJS"
  3. Use https://github.com/b-g/tilehut/ as source code for your Application
  4. Connect via SFTP to OpenShift and drop a .MBtiles tileset into the folder /app-root/data/
  5. Done!

Now you can inspect your map ...

{appname}-{youropenshiftdomain}.rhcloud.com/{tilesetname}/map

... and the tiles are ready to use via

{appname}-{youropenshiftdomain}.rhcloud.com/{tilesetname}/{z}/{x}/{y}.png

You can of course also install Tilehut.js on your local machine or to any other server which supports node.js.

Tutorial: Getting Started with Tiles

We prepared quite a comprehensive tutorial which covers everything step-by-step. Starting from creating a tileset, to setting up OpenShift and finally using your own tileset.

Examples

See the examples folder for how to use the tilset (raster, utf-8 grid and vector tiles) in your own projects.

API

Inspector

Visit server/{tilesetname}/map to inspect a tileset. This works for raster, utf-8 and even vector tiles.

ZXY

The tiles are served via server/{tilesetname}/{z}/{x}/{y}.png

Meta Information

Get the meta informations e.g. lat/lon bounds, min and max zoom level etc. via server/name_of_tileset/meta.json

Vector Tiles

Adding ?vectortileflag=true to meta.json path (e.g. server/tileset/meta.json?vectortileflag=true) adds the "tiles" array property to the json. This property includes the path to your tiles, which is necessary for using vector maps in Mapbox GL JS.

See MapBox' TileJSON reference for more information.

Ping (is my server running?)

Check whether you server works by calling server/ping. Server should respond: "tilehut says pong!"

Acknowledgments

About

A modest, but cozy home for your map tiles

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%