openframe-tangram
Advanced tools
Comparing version 0.2.15 to 0.2.16
@@ -32,8 +32,6 @@ var pjson = require('./package.json'), | ||
if (scene.cameras) { | ||
console.log(scene.cameras); | ||
for (var i in scene.cameras) { | ||
var cam = scene.cameras[i]; | ||
if (cam.tilt) { | ||
if (cam.tilt && typeof cam.tilt === 'number') { | ||
console.log('TILT: ', cam.tilt); | ||
@@ -43,3 +41,3 @@ command += ' -t ' + cam.tilt; | ||
if (cam.rotation) { | ||
if (cam.rotation && typeof cam.rotation === 'number') { | ||
console.log('ROTATION: ', cam.rotation); | ||
@@ -49,3 +47,3 @@ command += ' -r ' + cam.rotation; | ||
if (cam.zoom) { | ||
if (cam.zoom && typeof cam.zoom === 'number') { | ||
console.log('ZOOM: ', cam.zoom); | ||
@@ -63,3 +61,4 @@ command += ' -z ' + cam.zoom; | ||
} | ||
command += ' -s $filepath'; | ||
command += ' -s $url'; | ||
return command; | ||
@@ -66,0 +65,0 @@ }, |
{ | ||
"name": "openframe-tangram", | ||
"version": "0.2.15", | ||
"version": "0.2.16", | ||
"description": "Openframe extension which adds support for maps via tangram-es", | ||
@@ -5,0 +5,0 @@ "main": "extension.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
47488580
0
55