This file contains hidden or 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
GEM | |
remote: https://rubygems.org/ | |
remote: https://rails-assets.org/ | |
specs: | |
actionmailer (4.2.0) | |
actionpack (= 4.2.0) | |
actionview (= 4.2.0) | |
activejob (= 4.2.0) | |
mail (~> 2.5, >= 2.5.4) | |
rails-dom-testing (~> 1.0, >= 1.0.5) |
This file contains hidden or 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
source 'https://rubygems.org' | |
gem 'devise' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.0' | |
# Use sqlite3 as the database for Active Record | |
# gem 'sqlite3' | |
gem 'pg' | |
# Use SCSS for stylesheets | |
gem 'sass-rails', '~> 5.0' |
This file contains hidden or 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 map; | |
var chart; | |
var infowindow = new google.maps.InfoWindow(); | |
var polyline; | |
var myParser; | |
var dataElevations; | |
var data; | |
var distance; | |
var mousemarker = null; | |
$.getJSON('https://dl.dropbox.com/u/26209821/stage_1.json', {}, function(data, status) { plotElevation(data); dataElevations = data}); |