Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Brown committed Sep 29, 2014
0 parents commit b88784a
Show file tree
Hide file tree
Showing 76 changed files with 15,952 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*#
/.sass-cache/
*~
/simple-fileserver*
23 changes: 23 additions & 0 deletions app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
application: my-io-talk
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /
static_files: template.html
upload: template\.html

- url: /slide_config\.js
static_files: slide_config.js
upload: slide_config\.js

- url: /js
static_dir: js

- url: /theme
static_dir: theme

- url: /images
static_dir: images
22 changes: 22 additions & 0 deletions basic.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<html>
<head>
<title>A Leaflet map!</title>

<!-- Load leaflet javascript and CSS files -->
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/>
<script src="/static/lib/js/leaflet-src.js"></script>

</head>

<body>
<!-- Load CSS for page -->
<link rel="stylesheet" href="/static/css/main.css"/>
<div id="basic-map">Leaflet</div>
</body>

<footer>
<!-- Load javascript to display map -->
<script src="/static/js/basic.js"></script>
</footer>

</html>
24 changes: 24 additions & 0 deletions config.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "static/css"
sass_dir = "static/scss"
images_dir = "static/images"
javascripts_dir = "static/js"

# You can select your preferred output style here (can be overridden via the command line):
output_style = :compressed #:expanded or :nested or :compact or :compressed

# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false


# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
# preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
33 changes: 33 additions & 0 deletions leaflet-plugins-example.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<html>
<head>
<title>Using Leaflet Plugins</title>

<!-- Load leaflet javascript and CSS files -->
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/>
<script src="/static/lib/js/leaflet-src.js"></script>

<!-- Load jquery from google cdn (should be cached by most browsers) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<!-- Load leaflet marker cluster plugin files -->
<link rel="stylesheet" href="/static/lib/css/MarkerCluster.Default.css"/>
<link rel="stylesheet" href="/static/lib/css/MarkerCluster.css"/>
<script src="/static/lib/js/leaflet.markercluster.js"></script>

<!-- Load leaflet omnivore plugin.js -->
<script src="//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.1.2/leaflet-omnivore.min.js"></script>

</head>

<body>
<!-- Load CSS for page -->
<link rel="stylesheet" href="/static/css/main.css"/>
<div id="basic-map">Leaflet</div>
</body>

<footer>
<!-- Load javascript to display map -->
<script src="/static/js/leaflet-plugins-example.js"></script>
</footer>

</html>
22 changes: 22 additions & 0 deletions multiple-layers.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<html>
<head>
<title>Multiple Layers Map!</title>

<!-- Load leaflet javascript and CSS files -->
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/>
<script src="/static/lib/js/leaflet-src.js"></script>

</head>

<body>
<!-- Load CSS for page -->
<link rel="stylesheet" href="/static/css/main.css"/>
<div id="basic-map">Leaflet</div>
</body>

<footer>
<!-- Load javascript to display multiple layers -->
<script src="/static/js/multiple-tilelayers.js"></script>
</footer>

</html>
24 changes: 24 additions & 0 deletions points.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<html>
<head>
<title>Showing Points</title>

<!-- Load leaflet javascript and CSS files -->
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/>
<script src="/static/lib/js/leaflet-src.js"></script>

<!-- Load jquery from google cdn (should be cached by most browsers) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>

<body>
<!-- Load CSS for page -->
<link rel="stylesheet" href="/static/css/main.css"/>
<div id="basic-map">Leaflet</div>
</body>

<footer>
<!-- Load javascript to display map -->
<script src="/static/js/points.js"></script>
</footer>

</html>
24 changes: 24 additions & 0 deletions polygons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<html>
<head>
<title>Philadelphia Neighborhoods</title>

<!-- Load leaflet javascript and CSS files -->
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/>
<script src="/static/lib/js/leaflet-src.js"></script>

<!-- Load jquery from google cdn (should be cached by most browsers) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>

<body>
<!-- Load CSS for page -->
<link rel="stylesheet" href="/static/css/main.css"/>
<div id="basic-map">Leaflet</div>
</body>

<footer>
<!-- Load javascript to display map -->
<script src="/static/js/polygons.js"></script>
</footer>

</html>
Loading

0 comments on commit b88784a

Please sign in to comment.