Skip to content

Commit

Permalink
bam!
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdesl committed Jun 16, 2015
0 parents commit 1121d62
Show file tree
Hide file tree
Showing 10 changed files with 271 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -0,0 +1,5 @@
bower_components
node_modules
*.log
.DS_Store
bundle.js
10 changes: 10 additions & 0 deletions .npmignore
@@ -0,0 +1,10 @@
bower_components
node_modules
*.log
.DS_Store
bundle.js
test
test.js
demo/
.npmignore
LICENSE.md
21 changes: 21 additions & 0 deletions LICENSE.md
@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2015 Matt DesLauriers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.

13 changes: 13 additions & 0 deletions README.md
@@ -0,0 +1,13 @@
# google-streetview-equirectangular

[![stable](http://badges.github.io/stability-badges/dist/stable.svg)](http://github.com/badges/stability-badges)

Stitches Google Street View tiles into an equirectangular image.

## Usage

[![NPM](https://nodei.co/npm/google-streetview-equirectangular.png)](https://www.npmjs.com/package/google-streetview-equirectangular)

## License

MIT, see [LICENSE.md](http://github.com/mattdesl/google-streetview-equirectangular/blob/master/LICENSE.md) for details.
21 changes: 21 additions & 0 deletions demo/index.js
@@ -0,0 +1,21 @@
var equirect = require('../')
var panorama = require('google-panorama-by-location')

var loc = [ 51.50700703827454, -0.12791916931155356 ]
panorama(loc, function (err, results) {
if (err) throw err

var id = results[0].id
var canvas = document.createElement('canvas')
document.body.appendChild(canvas)
canvas.style.width = '100%'
equirect({
canvas: canvas,
id: id,
zoom: 4
}).on('complete', function (image) {
console.log('Ready')
}).on('progress', function (ev) {
console.log(ev.count / ev.total)
})
})
17 changes: 17 additions & 0 deletions index.js
@@ -0,0 +1,17 @@
var getTiles = require('./lib/panorama-tiles')
var stitcher = require('./lib/stitch-image-tiles')

module.exports = equirect

function equirect (opt, cb) {
opt = opt || {}
var canvas = opt.canvas || document.createElement('canvas')
var context = canvas.getContext('2d')
var data = getTiles(opt)
return stitcher(context, {
tiles: data.tiles,
width: data.width,
height: data.height,
crossOrigin: opt.crossOrigin
})
}
51 changes: 51 additions & 0 deletions lib/panorama-tiles.js
@@ -0,0 +1,51 @@
// Much inspired by:
// https://github.com/spite/PanomNom.js

var defined = require('defined')

var widths = [ 416, 832, 1664, 3328, 6656, 13312 ]
var heights = [ 416, 416, 832, 1664, 3328, 6656 ]
var levelsW = [ 1, 2, 4, 7, 13, 26 ]
var levelsH = [ 1, 1, 2, 4, 7, 13 ]

module.exports = equirect

function equirect (opt) {
opt = opt || {}
var id = opt.id
if (!opt.id) {
throw new Error('must specify panorama ID')
}

var zoom = defined(opt.zoom, 1) >>> 0
var width = widths[zoom]
var height = heights[zoom]

var cols = levelsW[zoom]
var rows = levelsH[zoom]
var square = 512

var tiles = []
for (var y = 0; y < rows; y++) {
for (var x = 0; x < cols; x++) {
tiles.push({
url: getURL(id, x, y, zoom),
position: [ x * square, y * square ]
})
}
}

return {
columns: cols,
rows: rows,
tileSize: square,
width: width,
height: height,
tiles: tiles
}
}

function getURL (id, x, y, zoom) {
return 'https://geo0.ggpht.com/cbk?cb_client=maps_sv.tactile&authuser=0&hl=en&panoid=' + id + '&output=tile&x=' + x + '&y=' + y + '&zoom=' + zoom + '&nbt&fover=2'
// return 'https://cbks2.google.com/cbk?cb_client=maps_sv.tactile&authuser=0&hl=en&panoid=' + id + '&output=tile&zoom=' + zoom + '&x=' + x + '&y=' + y + '&' + Date.now()
}
52 changes: 52 additions & 0 deletions lib/stitch-image-tiles.js
@@ -0,0 +1,52 @@
var each = require('async-each')
var loadImage = require('img')
var Emitter = require('events').EventEmitter
var defined = require('defined')

module.exports = stitch

function stitch (context, opt) {
if (!context || !context.canvas) {
throw new Error('must provide a canvas rendering context')
}

opt = opt || {}

var canvas = context.canvas
var canvasWidth = defined(opt.width, canvas.width)
var canvasHeight = defined(opt.height, canvas.height)

// failed tiles will show as black
canvas.width = canvasWidth
canvas.height = canvasHeight
context.fillStyle = '#000'
context.fillRect(0, 0, canvasWidth, canvasHeight)

var emitter = new Emitter()
var count = 0
var tiles = opt.tiles
var total = tiles.length
var zero = [ 0, 0 ]

each(tiles, function (item, next) {
loadImage(item.url, opt, function (err, image) {
if (err) {
emitter.emit('not-found', item)
} else {
var position = item.position || zero
context.drawImage(image, position[0] || 0, position[1] || 0)
}

emitter.emit('progress', {
count: ++count,
total: total
})

next(null)
})
}, function () {
emitter.emit('complete', canvas)
})

return emitter
}
55 changes: 55 additions & 0 deletions package.json
@@ -0,0 +1,55 @@
{
"name": "google-panorama-equirectangular",
"version": "1.0.0",
"description": "gets equirectangular images from Google StreetView",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"async-each": "^0.1.6",
"defined": "^1.0.0",
"events": "^1.0.2",
"img": "^1.0.0",
"object-assign": "^3.0.0",
"xhr": "^2.0.2"
},
"devDependencies": {
"budo": "^4.0.0",
"garnish": "^2.1.3",
"google-panorama-by-location": "^1.0.1",
"is-dom-image": "^1.0.0",
"tap-dev-tool": "^1.3.0",
"tape": "^4.0.0"
},
"scripts": {
"test": "node test.js",
"start": "budo demo/index.js:bundle.js --live --verbose --dir demo | garnish"
},
"keywords": [
"google",
"api",
"street",
"view",
"image",
"equirect",
"equirectangular",
"panorama",
"pano",
"panoramic",
"webgl",
"glsl",
"stackgl"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/google-panorama-equirectangular.git"
},
"homepage": "https://github.com/mattdesl/google-panorama-equirectangular",
"bugs": {
"url": "https://github.com/mattdesl/google-panorama-equirectangular/issues"
}
}
26 changes: 26 additions & 0 deletions test/image.js
@@ -0,0 +1,26 @@
/*globals HTMLCanvasElement*/
var test = require('tape')
var equirect = require('../')

test('should get image', function (t) {
t.plan(4)

// can use google-panorama-by-location module
// or StreetViewService#getPanoramaByLocation
var id = 'dXZfBMex9_L7jO2JW3FTdA'
equirect({
id: id,
crossOrigin: 'Anonymous'
}).on('complete', function (image) {
t.equal(image instanceof HTMLCanvasElement, true, 'canvas')
t.equal(image.width, 832, 'width')
t.equal(image.height, 416, 'height')

function pixels () {
image.getContext('2d').getImageData(0, 0, 512, 512)
}
t.doesNotThrow(pixels, 'crossOrigin')
}).on('not-found', function (err) {
console.warning(err)
})
})

0 comments on commit 1121d62

Please sign in to comment.