frontend-generators 0.0.6 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +44 -0
- data/assets/clean_blog/app/assets/images/.keep +0 -0
- data/assets/clean_blog/app/assets/images/clean_blog/about-bg.jpg +0 -0
- data/assets/clean_blog/app/assets/images/clean_blog/contact-bg.jpg +0 -0
- data/assets/clean_blog/app/assets/images/clean_blog/home-bg.jpg +0 -0
- data/assets/clean_blog/app/assets/images/clean_blog/post-bg.jpg +0 -0
- data/assets/clean_blog/app/assets/images/clean_blog/post-sample-image.jpg +0 -0
- data/assets/clean_blog/app/assets/javascripts/clean_blog/clean-blog.js +1032 -0
- data/assets/clean_blog/app/assets/javascripts/clean_blog/manifest.js +6 -0
- data/assets/clean_blog/app/assets/stylesheets/clean_blog/clean-blog.css.scss +396 -0
- data/assets/clean_blog/app/assets/stylesheets/clean_blog/manifest.css +5 -0
- data/assets/clean_blog/app/controllers/clean_blogs_controller.rb +15 -0
- data/assets/clean_blog/app/helpers/clean_blogs_helper.rb +11 -0
- data/assets/clean_blog/app/views/clean_blogs/_footer.html.erb +35 -0
- data/assets/clean_blog/app/views/clean_blogs/_header.html.erb +61 -0
- data/assets/clean_blog/app/views/clean_blogs/_navigation.html.erb +34 -0
- data/assets/clean_blog/app/views/clean_blogs/_shim.html.erb +6 -0
- data/assets/clean_blog/app/views/clean_blogs/about.html.erb +20 -0
- data/assets/clean_blog/app/views/clean_blogs/contact.html.erb +58 -0
- data/assets/clean_blog/app/views/clean_blogs/index.html.erb +68 -0
- data/assets/clean_blog/app/views/clean_blogs/post.html.erb +52 -0
- data/assets/clean_blog/app/views/layouts/clean_blog.html.erb +16 -0
- data/assets/grayscale/app/assets/images/.keep +0 -0
- data/assets/grayscale/app/assets/images/grayscale/downloads-bg.jpg +0 -0
- data/assets/grayscale/app/assets/images/grayscale/intro-bg.jpg +0 -0
- data/assets/grayscale/app/assets/images/grayscale/map-marker.png +0 -0
- data/assets/grayscale/app/assets/javascripts/grayscale/grayscale.js +178 -0
- data/assets/grayscale/app/assets/javascripts/grayscale/jquery.easing.min.js +44 -0
- data/assets/grayscale/app/assets/javascripts/grayscale/manifest.js +7 -0
- data/assets/grayscale/app/assets/stylesheets/grayscale/grayscale.css +373 -0
- data/assets/grayscale/app/assets/stylesheets/grayscale/manifest.css +7 -0
- data/assets/grayscale/app/controllers/grayscales_controller.rb +5 -0
- data/assets/grayscale/app/views/grayscales/_about.html.erb +10 -0
- data/assets/grayscale/app/views/grayscales/_contact.html.erb +21 -0
- data/assets/grayscale/app/views/grayscales/_download.html.erb +11 -0
- data/assets/grayscale/app/views/grayscales/_footer.html.erb +5 -0
- data/assets/grayscale/app/views/grayscales/_header.html.erb +15 -0
- data/assets/grayscale/app/views/grayscales/_map.html.erb +8 -0
- data/assets/grayscale/app/views/grayscales/_navigation.html.erb +32 -0
- data/assets/grayscale/app/views/grayscales/_shim.html.erb +6 -0
- data/assets/grayscale/app/views/grayscales/index.html.erb +8 -0
- data/assets/grayscale/app/views/layouts/grayscale.html.erb +22 -0
- data/lib/frontend_generators/version.rb +1 -1
- data/lib/tasks/add_assets.rake +1 -1
- metadata +43 -2
@@ -0,0 +1,61 @@
|
|
1
|
+
<% if current_page?(root_path) %>
|
2
|
+
<header class="intro-header" style="background-image:
|
3
|
+
url('/assets/clean_blog/home-bg.jpg')">
|
4
|
+
<div class="container">
|
5
|
+
<div class="row">
|
6
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
7
|
+
<div class="site-heading">
|
8
|
+
<h1>Clean Blog</h1>
|
9
|
+
<hr class="small">
|
10
|
+
<span class="subheading">A Clean Blog Theme by Start Bootstrap</span>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</header>
|
16
|
+
<% elsif current_page?(about_path) %>
|
17
|
+
<header class="intro-header" style="background-image:
|
18
|
+
url('/assets/clean_blog/about-bg.jpg')">
|
19
|
+
<div class="container">
|
20
|
+
<div class="row">
|
21
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
22
|
+
<div class="page-heading">
|
23
|
+
<h1>About Me</h1>
|
24
|
+
<hr class="small">
|
25
|
+
<span class="subheading">This is what I do.</span>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</header>
|
31
|
+
<% elsif current_page?(post_path) %>
|
32
|
+
<header class="intro-header" style="background-image:
|
33
|
+
url('/assets/clean_blog/post-bg.jpg')">
|
34
|
+
<div class="container">
|
35
|
+
<div class="row">
|
36
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
37
|
+
<div class="post-heading">
|
38
|
+
<h1>Man must explore, and this is exploration at its greatest</h1>
|
39
|
+
<h2 class="subheading">Problems look mighty small from 150 miles up</h2>
|
40
|
+
<span class="meta">Posted by <a href="#">Start Bootstrap</a> on August 24, 2014</span>
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
</header>
|
46
|
+
<% elsif current_page?(contact_path) %>
|
47
|
+
<header class="intro-header" style="background-image:
|
48
|
+
url('/assets/clean_blog/contact-bg.jpg')">
|
49
|
+
<div class="container">
|
50
|
+
<div class="row">
|
51
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
52
|
+
<div class="page-heading">
|
53
|
+
<h1>Contact Me</h1>
|
54
|
+
<hr class="small">
|
55
|
+
<span class="subheading">Have questions? I have answers (maybe).</span>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
</div>
|
59
|
+
</div>
|
60
|
+
</header>
|
61
|
+
<% end %>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
|
2
|
+
<div class="container-fluid">
|
3
|
+
<!-- Brand and toggle get grouped for better mobile display -->
|
4
|
+
<div class="navbar-header page-scroll">
|
5
|
+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
6
|
+
<span class="sr-only">Toggle navigation</span>
|
7
|
+
<span class="icon-bar"></span>
|
8
|
+
<span class="icon-bar"></span>
|
9
|
+
<span class="icon-bar"></span>
|
10
|
+
</button>
|
11
|
+
<a class="navbar-brand" <%= link_to "Start Bootstrap", root_path %></a>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<!-- Collect the nav links, forms, and other content for toggling -->
|
15
|
+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
16
|
+
<ul class="nav navbar-nav navbar-right">
|
17
|
+
<li>
|
18
|
+
<%= link_to "Home", root_path %>
|
19
|
+
</li>
|
20
|
+
<li>
|
21
|
+
<%= link_to "About", about_path %>
|
22
|
+
</li>
|
23
|
+
<li>
|
24
|
+
<%= link_to "Sample Post", post_path %>
|
25
|
+
</li>
|
26
|
+
<li>
|
27
|
+
<%= link_to "Contact", contact_path data: { no_turbolink: true }%>
|
28
|
+
</li>
|
29
|
+
</ul>
|
30
|
+
</div>
|
31
|
+
<!-- /.navbar-collapse -->
|
32
|
+
</div>
|
33
|
+
<!-- /.container -->
|
34
|
+
</nav>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
2
|
+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
3
|
+
<!--[if lt IE 9]>
|
4
|
+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
5
|
+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
6
|
+
<![endif]-->
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<% provide(:title, "About") %>
|
2
|
+
|
3
|
+
<%= render 'shim' %>
|
4
|
+
<%= render 'navigation' %>
|
5
|
+
<%= render 'header' %>
|
6
|
+
|
7
|
+
<!-- Main Content -->
|
8
|
+
<div class="container">
|
9
|
+
<div class="row">
|
10
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
11
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Saepe nostrum ullam eveniet pariatur voluptates odit, fuga atque ea nobis sit soluta odio, adipisci quas excepturi maxime quae totam ducimus consectetur?</p>
|
12
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eius praesentium recusandae illo eaque architecto error, repellendus iusto reprehenderit, doloribus, minus sunt. Numquam at quae voluptatum in officia voluptas voluptatibus, minus!</p>
|
13
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nostrum molestiae debitis nobis, quod sapiente qui voluptatum, placeat magni repudiandae accusantium fugit quas labore non rerum possimus, corrupti enim modi! Et.</p>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
|
18
|
+
<br>
|
19
|
+
|
20
|
+
<%= render 'footer' %>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<% provide(:title, "Contact") %>
|
2
|
+
|
3
|
+
<%= render 'shim' %>
|
4
|
+
<%= render 'navigation' %>
|
5
|
+
<%= render 'header' %>
|
6
|
+
|
7
|
+
<!-- Main Content -->
|
8
|
+
<div class="container">
|
9
|
+
<div class="row">
|
10
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
11
|
+
<p>Want to get in touch with me? Fill out the form below to send me a message and I will try to get back to you within 24 hours!</p>
|
12
|
+
<!-- Contact Form - Enter your email address on line 19 of the mail/contact_me.php file to make this form work. -->
|
13
|
+
<!-- WARNING: Some web hosts do not allow emails to be sent through forms to common mail hosts like Gmail or Yahoo. It's recommended that you use a private domain email address! -->
|
14
|
+
<!-- NOTE: To use the contact form, your site must be on a live web host with PHP! The form will not work locally! -->
|
15
|
+
<form name="sentMessage" id="contactForm" novalidate>
|
16
|
+
<div class="row control-group">
|
17
|
+
<div class="form-group col-xs-12 floating-label-form-group controls">
|
18
|
+
<label>Name</label>
|
19
|
+
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
|
20
|
+
<p class="help-block text-danger"></p>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
<div class="row control-group">
|
24
|
+
<div class="form-group col-xs-12 floating-label-form-group controls">
|
25
|
+
<label>Email Address</label>
|
26
|
+
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
|
27
|
+
<p class="help-block text-danger"></p>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
<div class="row control-group">
|
31
|
+
<div class="form-group col-xs-12 floating-label-form-group controls">
|
32
|
+
<label>Phone Number</label>
|
33
|
+
<input type="tel" class="form-control" placeholder="Phone Number" id="phone" required data-validation-required-message="Please enter your phone number.">
|
34
|
+
<p class="help-block text-danger"></p>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
<div class="row control-group">
|
38
|
+
<div class="form-group col-xs-12 floating-label-form-group controls">
|
39
|
+
<label>Message</label>
|
40
|
+
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
|
41
|
+
<p class="help-block text-danger"></p>
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
<br>
|
45
|
+
<div id="success"></div>
|
46
|
+
<div class="row">
|
47
|
+
<div class="form-group col-xs-12">
|
48
|
+
<button type="submit" class="btn btn-default">Send</button>
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
</form>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<br>
|
57
|
+
|
58
|
+
<%= render 'footer' %>
|
@@ -0,0 +1,68 @@
|
|
1
|
+
<title>Clean Blog</title>
|
2
|
+
|
3
|
+
<%= render 'shim' %>
|
4
|
+
<%= render 'navigation' %>
|
5
|
+
<%= render 'header' %>
|
6
|
+
|
7
|
+
<!-- Main Content -->
|
8
|
+
<div class="container">
|
9
|
+
<div class="row">
|
10
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
11
|
+
<div class="post-preview">
|
12
|
+
<%= link_to post_path do %>
|
13
|
+
<h2 class="post-title">
|
14
|
+
Man must explore, and this is exploration at its greatest
|
15
|
+
</h2>
|
16
|
+
<h3 class="post-subtitle">
|
17
|
+
Problems look mighty small from 150 miles up
|
18
|
+
</h3>
|
19
|
+
<% end %>
|
20
|
+
<p class="post-meta">Posted by <a href="#">Start Bootstrap</a> on September 24, 2014</p>
|
21
|
+
</div>
|
22
|
+
<hr>
|
23
|
+
<div class="post-preview">
|
24
|
+
<%= link_to post_path do %>
|
25
|
+
<h2 class="post-title">
|
26
|
+
I believe every human has a finite number of heartbeats. I dointend to waste any of mine.
|
27
|
+
</h2>
|
28
|
+
<% end %>
|
29
|
+
<p class="post-meta">Posted by <a href="#">Start Bootstrap</a> on September 18, 2014</p>
|
30
|
+
</div>
|
31
|
+
<hr>
|
32
|
+
<div class="post-preview">
|
33
|
+
<%= link_to post_path do %>
|
34
|
+
<h2 class="post-title">
|
35
|
+
Science has not yet mastered prophecy
|
36
|
+
</h2>
|
37
|
+
<h3 class="post-subtitle">
|
38
|
+
We predict too much for the next year and yet far too little the next ten.
|
39
|
+
</h3>
|
40
|
+
<% end %>
|
41
|
+
<p class="post-meta">Posted by <a href="#">Start Bootstrap</a> on Aug24, 2014</p>
|
42
|
+
</div>
|
43
|
+
<hr>
|
44
|
+
<div class="post-preview">
|
45
|
+
<%= link_to post_path do %>
|
46
|
+
<h2 class="post-title">
|
47
|
+
Failure is not an option
|
48
|
+
</h2>
|
49
|
+
<h3 class="post-subtitle">
|
50
|
+
Many say exploration is part of our destiny, but it’s actuaour duty to future generations.
|
51
|
+
</h3>
|
52
|
+
<% end %>
|
53
|
+
<p class="post-meta">Posted by <a href="#">Start Bootstrap</a> on July2014</p>
|
54
|
+
</div>
|
55
|
+
<hr>
|
56
|
+
<!-- Pager -->
|
57
|
+
<ul class="pager">
|
58
|
+
<li class="next">
|
59
|
+
<a href="#">Older Posts →</a>
|
60
|
+
</li>
|
61
|
+
</ul>
|
62
|
+
</div>
|
63
|
+
</div>
|
64
|
+
</div>
|
65
|
+
|
66
|
+
<br>
|
67
|
+
|
68
|
+
<%= render 'footer' %>
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<% provide(:title, "Sample Post") %>
|
2
|
+
|
3
|
+
<%= render 'shim' %>
|
4
|
+
<%= render 'navigation' %>
|
5
|
+
<%= render 'header' %>
|
6
|
+
|
7
|
+
<!-- Post Content -->
|
8
|
+
<article>
|
9
|
+
<div class="container">
|
10
|
+
<div class="row">
|
11
|
+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
12
|
+
<p>Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.</p>
|
13
|
+
|
14
|
+
<p>Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.</p>
|
15
|
+
|
16
|
+
<p>What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.</p>
|
17
|
+
|
18
|
+
<p>A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.</p>
|
19
|
+
|
20
|
+
<p>For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.</p>
|
21
|
+
|
22
|
+
<h2 class="section-heading">The Final Frontier</h2>
|
23
|
+
|
24
|
+
<p>There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.</p>
|
25
|
+
|
26
|
+
<p>There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.</p>
|
27
|
+
|
28
|
+
<blockquote>The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.</blockquote>
|
29
|
+
|
30
|
+
<p>Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.</p>
|
31
|
+
|
32
|
+
<h2 class="section-heading">Reaching for the Stars</h2>
|
33
|
+
|
34
|
+
<p>As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.</p>
|
35
|
+
|
36
|
+
<%= image_tag('clean_blog/post-sample-image.jpg') %>
|
37
|
+
|
38
|
+
<span class="caption text-muted">To go places and do things that have never been done before – that’s what living is all about.</span>
|
39
|
+
|
40
|
+
<p>Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.</p>
|
41
|
+
|
42
|
+
<p>As I stand out here in the wonders of the unknown at Hadley, I sort of realize there’s a fundamental truth to our nature, Man must explore, and this is exploration at its greatest.</p>
|
43
|
+
|
44
|
+
<p>Placeholder text by <a href="http://spaceipsum.com/">Space Ipsum</a>. Photographs by <a href="https://www.flickr.com/photos/nasacommons/">NASA on The Commons</a>.</p>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
</article>
|
49
|
+
|
50
|
+
<br>
|
51
|
+
|
52
|
+
<%= render 'footer' %>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title><%= full_title(yield(:title)) %></title>
|
5
|
+
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
|
6
|
+
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
|
7
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
8
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
9
|
+
<%= csrf_meta_tags %>
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
|
13
|
+
<%= yield %>
|
14
|
+
|
15
|
+
</body>
|
16
|
+
</html>
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,178 @@
|
|
1
|
+
/*!
|
2
|
+
* Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
|
3
|
+
* Code licensed under the Apache License v2.0.
|
4
|
+
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
5
|
+
*/
|
6
|
+
|
7
|
+
// jQuery to collapse the navbar on scroll
|
8
|
+
$(window).scroll(function() {
|
9
|
+
if ($(".navbar").offset().top > 50) {
|
10
|
+
$(".navbar-fixed-top").addClass("top-nav-collapse");
|
11
|
+
} else {
|
12
|
+
$(".navbar-fixed-top").removeClass("top-nav-collapse");
|
13
|
+
}
|
14
|
+
});
|
15
|
+
|
16
|
+
// jQuery for page scrolling feature - requires jQuery Easing plugin
|
17
|
+
$(function() {
|
18
|
+
$('a.page-scroll').bind('click', function(event) {
|
19
|
+
var $anchor = $(this);
|
20
|
+
$('html, body').stop().animate({
|
21
|
+
scrollTop: $($anchor.attr('href')).offset().top
|
22
|
+
}, 1500, 'easeInOutExpo');
|
23
|
+
event.preventDefault();
|
24
|
+
});
|
25
|
+
});
|
26
|
+
|
27
|
+
// Closes the Responsive Menu on Menu Item Click
|
28
|
+
$('.navbar-collapse ul li a').click(function() {
|
29
|
+
$('.navbar-toggle:visible').click();
|
30
|
+
});
|
31
|
+
|
32
|
+
// Google Maps Scripts
|
33
|
+
// When the window has finished loading create our google map below
|
34
|
+
google.maps.event.addDomListener(window, 'load', init);
|
35
|
+
|
36
|
+
function init() {
|
37
|
+
// Basic options for a simple Google Map
|
38
|
+
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
|
39
|
+
var mapOptions = {
|
40
|
+
// How zoomed in you want the map to start at (always required)
|
41
|
+
zoom: 15,
|
42
|
+
|
43
|
+
// The latitude and longitude to center the map (always required)
|
44
|
+
center: new google.maps.LatLng(40.6700, -73.9400), // New York
|
45
|
+
|
46
|
+
// Disables the default Google Maps UI components
|
47
|
+
disableDefaultUI: true,
|
48
|
+
scrollwheel: false,
|
49
|
+
draggable: false,
|
50
|
+
|
51
|
+
// How you would like to style the map.
|
52
|
+
// This is where you would paste any style found on Snazzy Maps.
|
53
|
+
styles: [{
|
54
|
+
"featureType": "water",
|
55
|
+
"elementType": "geometry",
|
56
|
+
"stylers": [{
|
57
|
+
"color": "#000000"
|
58
|
+
}, {
|
59
|
+
"lightness": 17
|
60
|
+
}]
|
61
|
+
}, {
|
62
|
+
"featureType": "landscape",
|
63
|
+
"elementType": "geometry",
|
64
|
+
"stylers": [{
|
65
|
+
"color": "#000000"
|
66
|
+
}, {
|
67
|
+
"lightness": 20
|
68
|
+
}]
|
69
|
+
}, {
|
70
|
+
"featureType": "road.highway",
|
71
|
+
"elementType": "geometry.fill",
|
72
|
+
"stylers": [{
|
73
|
+
"color": "#000000"
|
74
|
+
}, {
|
75
|
+
"lightness": 17
|
76
|
+
}]
|
77
|
+
}, {
|
78
|
+
"featureType": "road.highway",
|
79
|
+
"elementType": "geometry.stroke",
|
80
|
+
"stylers": [{
|
81
|
+
"color": "#000000"
|
82
|
+
}, {
|
83
|
+
"lightness": 29
|
84
|
+
}, {
|
85
|
+
"weight": 0.2
|
86
|
+
}]
|
87
|
+
}, {
|
88
|
+
"featureType": "road.arterial",
|
89
|
+
"elementType": "geometry",
|
90
|
+
"stylers": [{
|
91
|
+
"color": "#000000"
|
92
|
+
}, {
|
93
|
+
"lightness": 18
|
94
|
+
}]
|
95
|
+
}, {
|
96
|
+
"featureType": "road.local",
|
97
|
+
"elementType": "geometry",
|
98
|
+
"stylers": [{
|
99
|
+
"color": "#000000"
|
100
|
+
}, {
|
101
|
+
"lightness": 16
|
102
|
+
}]
|
103
|
+
}, {
|
104
|
+
"featureType": "poi",
|
105
|
+
"elementType": "geometry",
|
106
|
+
"stylers": [{
|
107
|
+
"color": "#000000"
|
108
|
+
}, {
|
109
|
+
"lightness": 21
|
110
|
+
}]
|
111
|
+
}, {
|
112
|
+
"elementType": "labels.text.stroke",
|
113
|
+
"stylers": [{
|
114
|
+
"visibility": "on"
|
115
|
+
}, {
|
116
|
+
"color": "#000000"
|
117
|
+
}, {
|
118
|
+
"lightness": 16
|
119
|
+
}]
|
120
|
+
}, {
|
121
|
+
"elementType": "labels.text.fill",
|
122
|
+
"stylers": [{
|
123
|
+
"saturation": 36
|
124
|
+
}, {
|
125
|
+
"color": "#000000"
|
126
|
+
}, {
|
127
|
+
"lightness": 40
|
128
|
+
}]
|
129
|
+
}, {
|
130
|
+
"elementType": "labels.icon",
|
131
|
+
"stylers": [{
|
132
|
+
"visibility": "off"
|
133
|
+
}]
|
134
|
+
}, {
|
135
|
+
"featureType": "transit",
|
136
|
+
"elementType": "geometry",
|
137
|
+
"stylers": [{
|
138
|
+
"color": "#000000"
|
139
|
+
}, {
|
140
|
+
"lightness": 19
|
141
|
+
}]
|
142
|
+
}, {
|
143
|
+
"featureType": "administrative",
|
144
|
+
"elementType": "geometry.fill",
|
145
|
+
"stylers": [{
|
146
|
+
"color": "#000000"
|
147
|
+
}, {
|
148
|
+
"lightness": 20
|
149
|
+
}]
|
150
|
+
}, {
|
151
|
+
"featureType": "administrative",
|
152
|
+
"elementType": "geometry.stroke",
|
153
|
+
"stylers": [{
|
154
|
+
"color": "#000000"
|
155
|
+
}, {
|
156
|
+
"lightness": 17
|
157
|
+
}, {
|
158
|
+
"weight": 1.2
|
159
|
+
}]
|
160
|
+
}]
|
161
|
+
};
|
162
|
+
|
163
|
+
// Get the HTML DOM element that will contain your map
|
164
|
+
// We are using a div with id="map" seen below in the <body>
|
165
|
+
var mapElement = document.getElementById('map');
|
166
|
+
|
167
|
+
// Create the Google Map using out element and options defined above
|
168
|
+
var map = new google.maps.Map(mapElement, mapOptions);
|
169
|
+
|
170
|
+
// Custom Map Marker Icon - Customize the map-marker.png file to customize your icon
|
171
|
+
var image = 'img/map-marker.png';
|
172
|
+
var myLatLng = new google.maps.LatLng(40.6700, -73.9400);
|
173
|
+
var beachMarker = new google.maps.Marker({
|
174
|
+
position: myLatLng,
|
175
|
+
map: map,
|
176
|
+
icon: image
|
177
|
+
});
|
178
|
+
}
|