| 20544 |
amit.gupta |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
3 |
<head>
|
|
|
4 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
5 |
<title>Hotspot Store</title>
|
|
|
6 |
<link href="/css/style.css" type="text/css" rel="stylesheet" />
|
|
|
7 |
<link rel="stylesheet" type="text/css" href="/css/storelocator.css">
|
|
|
8 |
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAWr2xrDfxwBgFUkm0Jvda1l7Byhk6pG4w®ion=IN"></script>
|
|
|
9 |
<script type="text/javascript" src="/js/jquery-3.0.0.min.js"></script>
|
|
|
10 |
<script type="text/javascript" src="/js/jquery.storelocator.js"></script>
|
|
|
11 |
<script type="text/javascript" src="/js/handlebars.min.js"></script>
|
|
|
12 |
<!--API initialised-->
|
|
|
13 |
|
|
|
14 |
<script type="text/javascript">
|
|
|
15 |
defaultLoc = {lat: 28.704, lng: 77.102};
|
|
|
16 |
$(function() {
|
|
|
17 |
$('#bh-sl-map-container').storeLocator({
|
|
|
18 |
autoGeocode: true,
|
|
|
19 |
infowindowTemplatePath : '/template/infowindow-description.html',
|
|
|
20 |
listTemplatePath : '/template/location-list-description.html',
|
|
|
21 |
dataType: 'json',
|
|
|
22 |
dataLocation: '/data/locations.json',
|
|
|
23 |
lengthUnit: 'km',
|
|
|
24 |
noForm: true,
|
|
|
25 |
defaultLoc:true,
|
|
|
26 |
defaultLat:defaultLoc.lat,
|
|
|
27 |
defaultLng:defaultLoc.lng
|
|
|
28 |
});
|
|
|
29 |
});
|
|
|
30 |
</script>
|
|
|
31 |
|
|
|
32 |
</head>
|
|
|
33 |
|
|
|
34 |
<body>
|
|
|
35 |
|
|
|
36 |
#include("templates/header.vm")
|
| 20575 |
amit.gupta |
37 |
<div class="storeLocatorPage_container" style="min-height:800px>
|
|
|
38 |
<div class="bh-sl-container">
|
| 20544 |
amit.gupta |
39 |
<div id="page-header">
|
|
|
40 |
<h1 class="bh-sl-title">Locate Us</h1>
|
|
|
41 |
</div>
|
|
|
42 |
|
|
|
43 |
<div class="bh-sl-form-container">
|
|
|
44 |
<div class="form-input">
|
|
|
45 |
<label for="bh-sl-address">Enter Address or Pin Code:</label>
|
|
|
46 |
<input type="text" id="bh-sl-address" name="bh-sl-address" />
|
|
|
47 |
</div>
|
| 20575 |
amit.gupta |
48 |
<button id="bh-sl-submit" type="submit" style="background-color:#ffce00;color:black">Submit</button>
|
| 20544 |
amit.gupta |
49 |
</div>
|
|
|
50 |
|
|
|
51 |
<div id="bh-sl-map-container" class="bh-sl-map-container">
|
|
|
52 |
<div id="bh-sl-map" class="bh-sl-map"></div>
|
|
|
53 |
<div class="bh-sl-loc-list">
|
|
|
54 |
<ul class="list"></ul>
|
|
|
55 |
</div>
|
|
|
56 |
</div>
|
|
|
57 |
</div>
|
| 20575 |
amit.gupta |
58 |
<div class="storeLocatorPage_container">
|
| 20544 |
amit.gupta |
59 |
<!--Footer Starts Here-->
|
|
|
60 |
|
| 20563 |
amit.gupta |
61 |
#include("templates/footer.vm")
|
| 20544 |
amit.gupta |
62 |
<!--Footer Ends Here-->
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
</body>
|
|
|
66 |
</html>
|