-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.php
74 lines (56 loc) · 2.19 KB
/
map.php
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
<!DOCTYPE html>
<html dir="ltr" lang="en-US"><head><!-- Created by Artisteer v4.1.0.59861 -->
<meta charset="utf-8">
<title>Contact Us</title>
<meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width = device-width">
<!--[if lt IE 9]><script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="stylesheet" href="css/style.css" media="screen">
<!--[if lte IE 7]><link rel="stylesheet" href="style.ie7.css" media="screen" /><![endif]-->
<link rel="stylesheet" href="css/style.responsive.css" media="all">
<script src="javascript/jquery.js"></script>
<script src="javascript/script.js"></script>
<script src="javascript/script.responsive.js"></script>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<style>
#map-canvas {
width: 900px;
height: 400px;
}
</style>
</head>
<body>
<div id="art-main">
<!--HTML Header-->
<?php include('template/header.php');?>
<!-- End of Header-->
<div class="art-sheet clearfix">
<!--Navigation Starts-->
<?php include('template/nav.php');?>
<!--Navigation End-->
<div class="art-layout-wrapper">
<div class="art-content-layout">
<div class="art-content-layout-row">
<div class="art-layout-cell art-content"><article class="art-post art-article">
<h2 class="art-postheader">Contact Us</h2>
<div class="art-postcontent art-postcontent-0 clearfix">
<script>
function initialize() {
var mapCanvas = document.getElementById('map-canvas');
var mapOptions = {
center: new google.maps.LatLng(34.348239, 71.730188),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(mapCanvas, mapOptions)
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div id="map-canvas"></div>
</article></div>
</div>
</div>
</div>
<?php include('template/footer.php'); ?>
</div>
</div>
</body></html>