-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.php
More file actions
36 lines (30 loc) · 938 Bytes
/
map.php
File metadata and controls
36 lines (30 loc) · 938 Bytes
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
<?php
include_once("lib/settings/config.php");
$title = "HULP BIEDEN";
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<?php include("lib/includes/head.inc.php"); ?>
<title><?php echo $title ?></title>
<style>
#map{
height: 600px;
width: 100%;
}
</style>
</head>
<body>
<div class="canvas">
<?php include_once("lib/includes/nav.inc.php"); ?>
<?php if($check = true): ?>
<?php include_once("lib/includes/notif.inc.php"); ?>
<?php endif; ?>
<div id="map"></div>
<?php include_once("lib/includes/footer.inc.php"); ?>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCP6tWYDigepitMGesI3xXYxg2mnvVDPAs&callback=loadMaps" async defer></script>
</div>
</body>
</html>