-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplanetaryjs-objects.js
107 lines (79 loc) · 2.95 KB
/
planetaryjs-objects.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
planetaryjs.plugins.objects = function(config) {
var objects = [];
config = config || {};
var addObject = function(lng, lat, options) {
options = options || {};
options.speed = options.speed || config.speed || 0;
options.imagesrc = options.imagesrc || config.imagesrc || "";
options.imagewidth = options.imagewidth || config.imagewidth || 50;
options.imageheight = options.imageheight || config.imageheight || 50;
options.fade = options.fade || config.fade || false;
var ping = { time: new Date(), options: options };
if (config.latitudeFirst) {
ping.lat = lng;
ping.lng = lat;
} else {
ping.lng = lng;
ping.lat = lat;
}
objects.push(ping);
};
var drawobjects = function(planet, context, now) {
var newobjects = [];
for (var i = 0; i < objects.length; i++) {
var object = objects[i];
var timechange = now - object.time;
newobjects.push(object);
drawobject(planet, context, now, timechange, object);
}
objects = newobjects;
};
var drawobject = function(planet, context, now, timechange, object) {
//If Speed is greater than 0 animate object on lng/x axis
var newlng = 0
if(object.options.speed > 0){
var xmove = (timechange*(object.options.speed))/100;
newlng = (object.lng+xmove)
} else {
newlng = object.lng
}
//Get Spherical Coords from lat lng
var coords = planet.projection([newlng, object.lat])
var img = new Image()
img.src = object.options.imagesrc;
var geoangle = d3.geo.distance([newlng, object.lat],[-planet.projection.rotate()[0], -planet.projection.rotate()[1]]);
//closeness used for fading
var closeness = 1.57079632679490 - geoangle;
if (geoangle > 1.57079632679490)
{
//Behind Sphere > 90 degrees
} else {
var imagewidth = object.options.imagewidth;
var imageheight = object.options.imageheight;
if(object.options.fade == true){
if(closeness < 0.1){
context.globalAlpha = closeness*10;
}
}
context.drawImage(img, (coords[0]-(imagewidth/2)) ,(coords[1]-(imageheight/2)), imagewidth ,imageheight)
context.globalAlpha = 1
//If fade is true fade out and in
}
};
return function (planet) {
planet.plugins.objects = {
add: addObject,
objectList: objects
};
planet.onDraw(function() {
planet.plugins.objects = {
add: addObject,
objectList: objects
};
var now = new Date();
planet.withSavedContext(function(context) {
drawobjects(planet, context, now);
});
});
};
};