Skip to content

Instantly share code, notes, and snippets.

@enjalot
Created February 1, 2013 05:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enjalot/4689379 to your computer and use it in GitHub Desktop.
Save enjalot/4689379 to your computer and use it in GitHub Desktop.
simple globe canvas Leap
{"description":"simple globe canvas Leap","endpoint":"","display":"canvas","public":true,"require":[{"name":"topojson","url":"http://d3js.org/topojson.v0.min.js"},{"name":"d3.geo.projection","url":"http://d3js.org/d3.geo.projection.v0.min.js"}],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"world110.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"leap.js":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"play":false,"loop":false,"restart":true,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"fullscreen":false,"thumbnail":"http://i.imgur.com/s005cJI.png","ajax-caching":true}
//http://bl.ocks.org/4188334
var world = tributary.world110;
var globe = {type: "Sphere"};
var countries = topojson.object(world, world.objects.countries)
var projection = d3.geo.orthographic()
.scale(478)
.translate([495, 430])
.rotate([0,6,0])
.clipAngle(74);
var context = tributary.ctx;
var path = d3.geo.path()
.projection(projection)
.context(context);
context.fillStyle = "#115311";
context.beginPath();
path(countries);
context.fill();
context.strokeStyle = "#0D3500";
context.beginPath(), path(globe), context.stroke();
tributary.events.off("leap");
tributary.events.on("leap", function(d) {
if(d.pointables[0] != undefined){
tributary.clear();
}
//console.log(d.pointables[0].tipPosition);
tip = d.pointables[0].tipPosition
var zoom = tip[2]
if( zoom > 100 ) { zoom = 100 }
else if ( zoom < 10 ) { zoom = 10 }
tip[2] = 0
projection.rotate(tip)
projection.clipAngle(zoom)
path.projection(projection)
context.fillStyle = "#0B304D";
context.beginPath();
path(countries);
context.fill();
context.beginPath(), path(globe), context.stroke();
})
if(!tributary.leap) tributary.leap = {};
var ws;
// Support both the WebSocket and MozWebSocket objects
if ((typeof(WebSocket) == 'undefined') &&
(typeof(MozWebSocket) != 'undefined')) {
WebSocket = MozWebSocket;
}
// Create the socket with event handlers
tributary.leap.init = function() {
console.log("Starting");
//Create and open the socket
ws = new WebSocket("ws://localhost:6437/");
// On successful connection
ws.onopen = function(event) {
//document.getElementById("connection").innerHTML = "WebSocket connection open!";
//$("#textoutput").html("Open...")
console.log("Open");
};
// On message received
ws.onmessage = function(event) {
tributary.events.trigger("leap", JSON.parse(event.data));
};
// On socket close
ws.onclose = function(event) {
ws = null;
}
//On socket error
ws.onerror = function(event) {
alert("Received error");
};
}
//control flow. we don't want to reinit
if(!tributary.leap.initialized) {
tributary.leap.init();
}
tributary.events.on("restart", function() {
tributary.leap.init();
})
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment