-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
51 lines (32 loc) · 1.35 KB
/
example.html
File metadata and controls
51 lines (32 loc) · 1.35 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="http://openlayers.org/en/v3.2.1/css/ol.css" type="text/css">
<link rel="stylesheet" href="vfnnrw-mapkit.css" type="text/css">
<title>VfN NRW | Map JQuery Plugin Example</title>
</head>
<body>
<div id="vfnnrw-mapkit" style="width: 100%; height: 75%;"></div>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js" type="text/javascript"></script>
<script src="http://openlayers.org/en/v3.2.1/build/ol.js" type="text/javascript"></script>
<script src="vfnnrw-mapkit.jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$( document ).ready( function() {
$( '#vfnnrw-mapkit' ).vfnnrw_mapkit({
community: 3,
latitude: 7.217008924294488,
longitude: 51.14100886102602,
zoom: 15
});
});
</script>
</body>
</html>