I am currently working on a one-page website and I would like to include a map as a background behind the "contact" section. The map can be set to float, draggable, or positioned at the back. I have experience using both the Google Maps API and LeafletJS, so I am open to utilizing either of them or any other suggestions.
The coordinates given are 14.2973° N, 121.0392° E, with the contact section layout provided below:
<!-- start contact -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="wow bounceIn" data-wow-offset="50" data-wow-delay="0.3s">CONTACT <span>US</span></h2>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 wow fadeInLeft" data-wow-offset="50" data-wow-delay="0.9s">
<form action="#" method="post">
<label>NAME</label>
<input name="fullname" type="text" class="form-control" id="fullname">
<label>EMAIL</label>
<input name="email" type="email" class="form-control" id="email">
<label>MESSAGE</label>
<textarea name="message" rows="4" class="form-control" id="message"></textarea>
<input type="submit" class="form-control">
</form>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 wow fadeInRight" data-wow-offset="50" data-wow-delay="0.6s">
<address>
<p class="address-title">OUR ADDRESS</p>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit quisque tempus ac eget diam et laoreet phasellus ut nisi id leo molestie.</span>
<p><i class="fa fa-phone"></i> 090-020-0340</p>
<p><i class="fa fa-envelope-o"></i> <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="17767e7472272e5774787a6776796e3974787a">[email protected]</a></p>
<p><i class="fa fa-map-marker"></i> Carmona, Cavite, Philippines</p>
</address>
<ul class="social-icon">
<li>
<h4>WE ARE SOCIAL</h4>
</li>
<li>
<a href="javascript:;" onclick="window.location.href = '#'" class="fa fa-facebook"></a>
</li>
<li>
<a href="javascript:;" onclick="window.location.href = '#'" class="fa fa-twitter"></a>
</li>
<li>
<a href="javascript:;" onclick="window.location.href = '#'" class="fa fa-instagram"></a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- end contact -->