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
|
<div class="row">
<div class="col-md-6">
<h4>Markers</h4>
<div style="height: 280px;" class="google-map mt-none mb-lg" id="googlemapsMarkers"></div>
</div>
<div class="col-md-6">
<h4>Custom Controls</h4>
<div style="height: 280px;" class="google-map mt-none mb-none" id="googlemapsControls"></div>
</div>
</div>
<script>
$(document).ready(function () {
// Markers
$("#googlemapsMarkers").gMap({
controls: {
draggable: (($.browser.mobile) ? false : true),
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: true,
streetViewControl: true,
overviewMapControl: true
},
scrollwheel: false,
markers: [{
address: "217 Summit Boulevard, Birmingham, AL 35243",
html: "<strong>Alabama Office</strong><br>217 Summit Boulevard, Birmingham, AL 35243",
icon: {
image: "/Portals/Porto3/img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46]
}
}, {
address: "645 E. Shaw Avenue, Fresno, CA 93710",
html: "<strong>California Office</strong><br>645 E. Shaw Avenue, Fresno, CA 93710",
icon: {
image: "/Portals/Porto3/img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46]
}
}, {
address: "New York, NY 10017",
html: "<strong>New York Office</strong><br>New York, NY 10017",
icon: {
image: "/Portals/Porto3/img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46]
}
}],
latitude: 37.09024,
longitude: -95.71289,
zoom: 3
});
// Custom Controls
$("#googlemapsControls").gMap({
controls: {
panControl: true,
zoomControl: false,
mapTypeControl: true,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false
},
scrollwheel: false,
latitude: 37.09024,
longitude: -95.71289,
zoom: 3
});
});
</script>
|