-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlarmas.html
123 lines (112 loc) · 5.77 KB
/
Alarmas.html
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
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en-ES">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Mi Comunidad</title>
<meta content="IE=edge" http-equiv="x-ua-compatible">
<meta content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" type="text/css" href="style/responsive.css">
<style>
#map {
height: 500px;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body cz-shortcut-listen="true">
<div id="main">
<div id="page">
<div class="top-navbar">
<div class="top-navbar-left"><a href="Index.html"><i class="fa fa-angle-left"></i></a></div>
<div class="site-title">
<h1>Mi comunidad</h1></div>
</div>
<div class="content-container">
<div class="MiComunidad-card signup animated fadeInUp">
<div class="profile-tabs">
<ul class="tabs" style="width: 100%;">
<li class="tab"><a class="active" href="#denuncias">Generar Alarma</a></li>
<li class="tab"><a href="#photo">Ver alarmas activas</a></li>
<div class="indicator" style="right: 902px; left: 0px;"></div>
<div class="indicator" style="right: 902px; left: 0px;"></div>
</ul>
</div>
<div class="profile-content">
<div id="denuncias">
<div class="content-container">
<div class="MiComunidad-card animated fadeInUp">
<div class="form-content">
<p class="app-desc">Tipo de alarma.</p>
<div class="input-field with-icon">
<select name="category" class="browser-default">
<option value="" selected="">Minería ilegal</option>
<option value="">Grupos armados</option>
<option value="">Grupos desconocidos</option>
<option value="">Amenaza</option>
<option value="">Panfletos</option>
</select>
</div>
<div class="input-field with-icon">
<input id="login" type="text">
<label for="login" class="">Ubicación de los hechos </label>
</div>
<div class="input-field with-icon">
<textarea id="textarea1" class="materialize-textarea"></textarea>
<label for="textarea1">Descripción de los hechos</label>
</div>
<a class="btn-large block margin-bottom" href="Index.html">Guardar</a>
</div>
</div>
</div>
</div>
<div id="photo" style="display: none;">
<div class="profile-block">
<div id="map"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/jquery.mixitup.min.js"></script>
<script type="text/javascript" src="js/slick.min.js"></script>
<script type="text/javascript" src="js/jquery.swipebox.min.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCVXrJrRrbIx6LLIxzy-2R9rIyU83UjB3U"></script>
<div class="hiddendiv common"></div>
<div class="drag-target" style="left: 0px; touch-action: pan-y; -webkit-user-drag: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></div>
<div class="drag-target" style="right: 0px; touch-action: pan-y; -webkit-user-drag: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></div>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 6,
center: {lat: 6.93361111, lng: -75.17988889}
};
map = new google.maps.Map(document.getElementById('map'),
mapOptions);
var marker = new google.maps.Marker({
position: {lat: 6.96272222, lng: -75.12841667},
map: map
});
var infowindow = new google.maps.InfoWindow({
content: '<p>Tipo de alarma : Minería Ilegal<br> Denunciante : Alirio Sanchez <br> Descripción : Se esta realizando minería ilegal en Yarumal Antioquia </p>'
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</body>
</html>