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
/*! gulpfile.js */ | |
const gulp = require("gulp"); | |
const gutil = require("gulp-util"); | |
const browserify = require("browserify"); | |
const buffer = require("vinyl-buffer"); | |
const uglify = require("gulp-uglify"); | |
const sourcemaps = require("gulp-sourcemaps"); | |
const source = require("vinyl-source-stream"); | |
const concat = require("gulp-concat") |
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
/*global Firebase, google, $, GeoFire */ | |
(function () { | |
"use strict"; | |
var map, previousInfowindow, ref, center, radiusInKm, | |
markers = {}, | |
lines = {}; | |
radiusInKm = 0.5; | |
ref = new Firebase("https://publicdata-parking.firebaseio.com/san_francisco"); | |
center = [37.78565219391501, -122.4058404513338]; |