https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 502d26914371a3421f209b83afef43f9a97c7847 authored by Eric Fischer on 08 January 2016, 21:28:31 UTC
Merge pull request #145 from mapbox/fix-layer-merge
Tip revision: 502d269
.travis.yml
language: c

sudo: false

matrix:
  include:
    - os: linux
      addons:
        apt:
          packages: [ 'protobuf-compiler', 'libprotobuf-dev' ]


install:
 - make

script:
 - echo '{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":[0,0]}}' > test.json
 - ./tippecanoe -o test.mbtiles test.json
back to top