This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by austin on 9/20/14. | |
*/ | |
var util = require('./util') | |
; | |
var activities = {} | |
, _qsAllowedProps = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function locationPick() { | |
document.getElementById("myDropdown").classList.toggle("show"); | |
} | |
window.onclick = function(event) { | |
if (!event.target.matches('.dropbtn')) { | |
var dropdowns = document.getElementsByClassName("dropdown-content"); | |
var i; | |
for (i = 0; i < dropdowns.length; i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var viewer = new Cesium.Viewer('cesiumContainer'); | |
var lines = viewer.scene.primitives.add(new Cesium.PolylineCollection()); | |
for(var i = 0; i < 1000; i++) { | |
var positions = [-75+i, 35, -60, 40]; | |
lines.add({ | |
positions: Cesium.Cartesian3.fromDegreesArray(positions), |