Last active
          September 10, 2015 16:02 
        
      - 
      
- 
        Save bcamper/6b7d85003a652c0018d6 to your computer and use it in GitHub Desktop. 
Revisions
- 
        bcamper revised this gist Sep 10, 2015 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,24 +17,26 @@ sources: layers: earth: data: source: earth draw: polygons: order: 0 color: darkgrey landuse: data: source: landuse draw: polygons: order: 1 color: palegreen roads: data: source: roads draw: lines: order: 2 color: white width: 2px 
- 
        bcamper created this gist Sep 10, 2015 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,40 @@ scene: background: color: lightblue sources: earth: type: TopoJSON url: //vector.mapzen.com/osm/earth/{z}/{x}/{y}.topojson landuse: type: TopoJSON url: //vector.mapzen.com/osm/landuse/{z}/{x}/{y}.topojson roads: type: TopoJSON url: //vector.mapzen.com/osm/roads/{z}/{x}/{y}.topojson layers: earth: data: { source: earth } draw: polygons: order: 0 color: darkgrey landuse: data: { source: landuse } draw: polygons: order: 1 color: palegreen roads: data: { source: roads } draw: lines: order: 2 color: white width: 2px