2019-01-16 14:03:18 +00:00
|
|
|
let tableData_global = []; // fetched date
|
|
|
|
let flags;
|
2019-01-09 11:25:28 +00:00
|
|
|
|
2019-01-11 11:31:36 +00:00
|
|
|
const doFetchCountries = () => {
|
|
|
|
$.ajax({ url: "/items" }).done((data) => {
|
|
|
|
if (data instanceof Array) tableData_global = data;
|
|
|
|
else {
|
|
|
|
tableData_global = [];
|
|
|
|
tableData_global.push(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
window.onload = () => {
|
|
|
|
doFetchCountries();
|
|
|
|
setup();
|
|
|
|
};
|
|
|
|
|
2019-01-16 11:00:42 +00:00
|
|
|
// mappa
|
2019-01-11 11:31:36 +00:00
|
|
|
const options = {
|
|
|
|
lat: 0,
|
|
|
|
lng: 0,
|
|
|
|
zoom: 4,
|
2019-01-16 11:00:42 +00:00
|
|
|
style: 'mapbox://styles/mapbox/traffic-night-v2',
|
|
|
|
pitch: 50,
|
2019-01-11 11:31:36 +00:00
|
|
|
}
|
2019-01-09 11:25:28 +00:00
|
|
|
|
2019-01-16 16:03:15 +00:00
|
|
|
let WIDTH;
|
|
|
|
let HEIGHT;
|
|
|
|
|
2019-01-16 11:00:42 +00:00
|
|
|
const key = 'pk.eyJ1IjoicmljYXJkb2xhbmduZXIiLCJhIjoiY2pxano2enh2MG1qazN4bm5lajIzeDl3eiJ9.wK0MtuxLgJxDcGUksKMeKg';
|
|
|
|
let mappa;
|
|
|
|
let myMap;
|
|
|
|
let canvas;
|
|
|
|
|
|
|
|
// three
|
|
|
|
let scene;
|
|
|
|
let camera;
|
|
|
|
let renderer;
|
2019-01-16 16:03:15 +00:00
|
|
|
var light;
|
2019-01-16 14:03:18 +00:00
|
|
|
|
|
|
|
function setup_enables() {
|
|
|
|
flags = [
|
2019-01-16 16:03:15 +00:00
|
|
|
{ id: "birth_rate_per_1000", enabled: true, color: 0xff0000 },
|
|
|
|
{ id: "cell_phones_per_100", enabled: true, color: 0x0ff000 },
|
|
|
|
{ id: "children_per_woman", enabled: true, color: 0x00ff00 },
|
|
|
|
{ id: "electricity_consumption_per_capita", enabled: true, color: 0x000ff0 },
|
|
|
|
{ id: "gdp_per_capita", enabled: true, color: 0x0000ff },
|
|
|
|
{ id: "gdp_per_capita_growth", enabled: true, color: 0xf0000f },
|
|
|
|
{ id: "inflation_annual", enabled: true, color: 0xf000f0 },
|
|
|
|
{ id: "internet_user_per_100", enabled: true, color: 0x00f00f },
|
|
|
|
{ id: "life_expectancy", enabled: true, color: 0xf00f00 },
|
|
|
|
{ id: "military_expenditure_percent_of_gdp", enabled: true, color: 0x0f00f0 },
|
2019-01-16 14:03:18 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-01-11 11:31:36 +00:00
|
|
|
function setup() {
|
|
|
|
mappa = new Mappa('MapboxGL', key);
|
2019-01-09 11:25:28 +00:00
|
|
|
myMap = mappa.tileMap(options);
|
2019-01-16 11:00:42 +00:00
|
|
|
canvas = document.getElementById("mapa");
|
|
|
|
canvas.width = window.innerWidth;
|
|
|
|
canvas.height = window.innerHeight;
|
|
|
|
|
2019-01-16 16:03:15 +00:00
|
|
|
WIDTH = window.innerWidth;
|
|
|
|
HEIGHT = window.innerHeight;
|
2019-01-16 14:03:18 +00:00
|
|
|
|
2019-01-16 16:03:15 +00:00
|
|
|
camera = new THREE.PerspectiveCamera(75, WIDTH / HEIGHT, 0.1, 1000);
|
2019-01-16 14:03:18 +00:00
|
|
|
camera.up = new THREE.Vector3(0, 0, 1);
|
2019-01-16 16:03:15 +00:00
|
|
|
//camera.position.z = 300;
|
2019-01-16 14:03:18 +00:00
|
|
|
|
|
|
|
scene = new THREE.Scene();
|
2019-01-16 11:00:42 +00:00
|
|
|
renderer = new THREE.WebGLRenderer({ alpha: true, canvas: canvas });
|
|
|
|
|
2019-01-16 16:03:15 +00:00
|
|
|
light = new THREE.PointLight(0xffffff, 1, 1000);
|
|
|
|
light.position.set(-50, -50, 100);
|
|
|
|
light.castShadow = true;
|
|
|
|
light.shadow.mapSize.width = 512;
|
|
|
|
light.shadow.mapSize.height = 512;
|
|
|
|
light.shadow.camera.near = 0.5;
|
|
|
|
light.shadow.camera.far = 1000;
|
|
|
|
|
|
|
|
renderer.setSize(WIDTH, HEIGHT);
|
2019-01-16 11:00:42 +00:00
|
|
|
document.body.appendChild(renderer.domElement);
|
|
|
|
|
2019-01-09 11:25:28 +00:00
|
|
|
myMap.overlay(canvas);
|
2019-01-16 16:03:15 +00:00
|
|
|
myMap.onChange(update);
|
2019-01-16 11:00:42 +00:00
|
|
|
|
2019-01-16 14:03:18 +00:00
|
|
|
setup_enables();
|
2019-01-16 16:03:15 +00:00
|
|
|
|
|
|
|
update();
|
2019-01-16 14:03:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-16 16:03:15 +00:00
|
|
|
function setup_objects() {
|
|
|
|
scene.remove.apply(scene, scene.children);
|
|
|
|
scene.add(light);
|
2019-01-16 14:03:18 +00:00
|
|
|
|
|
|
|
for (let i = 0; i < tableData_global.length; i++) {
|
|
|
|
let long = tableData_global[i]["gps_long"];
|
|
|
|
let lat = tableData_global[i]["gps_lat"];
|
2019-01-16 16:03:15 +00:00
|
|
|
let enabled = 0;
|
2019-01-16 14:03:18 +00:00
|
|
|
|
|
|
|
for (let j = 0; j < flags.length; j++) {
|
|
|
|
let flag = flags[j];
|
|
|
|
|
|
|
|
if (flag.enabled) {
|
|
|
|
let value = tableData_global[i][flag.id];
|
|
|
|
|
2019-01-16 16:03:15 +00:00
|
|
|
// TODO: value
|
|
|
|
let height = value / 10.0;
|
|
|
|
let geometry = new THREE.BoxGeometry(1, 1, height);
|
|
|
|
let material = new THREE.MeshBasicMaterial({ color: flag.color });
|
2019-01-16 14:03:18 +00:00
|
|
|
let cube = new THREE.Mesh(geometry, material);
|
2019-01-16 16:03:15 +00:00
|
|
|
cube.castShadow = true;
|
|
|
|
cube.receiveShadow = true;
|
|
|
|
|
|
|
|
const pos = myMap.latLngToPixel(lat, long);
|
|
|
|
const vector = new THREE.Vector3();
|
|
|
|
vector.set((pos.x / WIDTH) * 2 - 1, -(pos.y / HEIGHT) * 2 + 1, 0.5);
|
|
|
|
vector.unproject(camera);
|
|
|
|
const dir = vector.sub(camera.position).normalize();
|
|
|
|
const distance = -camera.position.z / dir.z;
|
|
|
|
const newPos = camera.position.clone().add(dir.multiplyScalar(distance));
|
|
|
|
|
|
|
|
cube.position.set(newPos.x + enabled, newPos.y, newPos.z + height / 2);
|
|
|
|
|
2019-01-16 14:03:18 +00:00
|
|
|
scene.add(cube);
|
2019-01-16 16:03:15 +00:00
|
|
|
|
|
|
|
enabled++;
|
2019-01-16 14:03:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2019-01-09 11:25:28 +00:00
|
|
|
}
|
2019-01-11 11:31:36 +00:00
|
|
|
|
2019-01-16 11:00:42 +00:00
|
|
|
function draw() { }
|
2019-01-11 11:31:36 +00:00
|
|
|
|
2019-01-16 16:03:15 +00:00
|
|
|
function update() {
|
|
|
|
setup_objects();
|
|
|
|
|
|
|
|
let position = myMap.pixelToLatLng(window.innerWidth / 2, window.innerHeight / 2);
|
2019-01-16 14:03:18 +00:00
|
|
|
|
|
|
|
let look_at = new THREE.Vector3(position.x, position.y, 0);
|
2019-01-16 16:03:15 +00:00
|
|
|
camera.position.set(look_at.x, look_at.y - 10, look_at.z + 30);
|
2019-01-16 14:03:18 +00:00
|
|
|
camera.lookAt(look_at);
|
|
|
|
|
2019-01-16 11:00:42 +00:00
|
|
|
renderer.render(scene, camera);
|
2019-01-11 11:31:36 +00:00
|
|
|
}
|