-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail-asco-jember.php
More file actions
111 lines (101 loc) · 3.38 KB
/
detail-asco-jember.php
File metadata and controls
111 lines (101 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Dealer</title>
<style>
/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
margin-bottom: 0;
border-radius: 0;
}
/* Add a gray background color and some padding to the footer */
footer {
background-color: #f2f2f2;
padding: 25px;
}
.carousel-inner img {
width: 100%; /* Set width to 100% */
margin: auto;
min-height:200px;
}
/* Hide the carousel text when the screen is less than 600 pixels wide */
@media (max-width: 600px) {
.carousel-caption {
display: none;
}
}
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">Dealer</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="index.php">Beranda</a></li>
<li class="active"><a href="cabang.php">Cabang</a></li>
<li><a href="peta-persebaran-cabang.php">Peta Persebaran Cabang</a></li>
<li><a href="tentang-kami.php">Tentang Kami</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="lainnya.php">Lainnya</a></li>
</ul>
</div>
</div>
</nav>
<div id="map"></div>
<script>
function initMap() {
var myLatLng = {lat: -8.187634, lng: 113.6562939};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: myLatLng
});
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: 'Asco Automotive Jember, Jember, Jawa Timur, Jl. Raya Hayam Wuruk No.161 Jember'
});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDCJ6cZ8t_HBdb2439Chkitvr162RbJ3h4&callback=initMap">
</script>
<footer class="container-fluid">
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="index.php">Beranda</a></li>
<li><a href="legalitas.php">Legalitas</a></li>
<li><a href="kebijakan-privasi.php">Kebijakan Privasi</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Copyright © 2016, All right reserved.</a></li>
</ul>
</div>
</footer>
</body>
</html>