-
Notifications
You must be signed in to change notification settings - Fork 0
/
ver_poligono.php
140 lines (130 loc) · 4.48 KB
/
ver_poligono.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Rastreo Servitrans</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
body, html {
margin: 0 !important;
padding: 0 !important;
}
#map-container { height: 720px; width:900px;}
.acciones{
width: 100%;
height: 50px;
position: absolute;
bottom:0;
}
</style>
</head>
<body>
<button style="display: none;" id="<?php echo $_GET["pid"];?>" class="get_geo"></button>
<div id="map-container"></div>
<div class="row acciones">
<div class="col-md-12">
<button type="submit" name="btn-submit" class="btn btn-danger pull-right geo_cancel" aria-haspopup="true" aria-expanded="false">Cerrar</button>
<button type="submit" name="btn-submit" class="btn btn-success pull-right geo_update" style="margin-right:5px;" aria-haspopup="true" aria-expanded="false">Guardar Cambios</button>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAJ4z5BFE4vj56liE3pwgzENu4J13lbyRk&libraries=drawing,geometry"></script>
<script>
var var_map;
var poly;
function init_map() {
var var_location = new google.maps.LatLng(-33.3266167,-70.7164856);
var var_mapoptions = {
center: var_location,
zoom: 15
};
var drawingManager = new google.maps.drawing.DrawingManager({
//drawingMode: google.maps.drawing.OverlayType.MARKER,
drawingControl: true,
drawingControlOptions: {
position: google.maps.ControlPosition.TOP_CENTER,
drawingModes: [
//google.maps.drawing.OverlayType.POLYGON
]
},
polygonOptions: {
clickable: false,
editable: true
}
});
var_map = new google.maps.Map(document.getElementById("map-container"),var_mapoptions);
drawingManager.setMap(var_map);
google.maps.event.addListener(drawingManager, 'polygoncomplete', function (polygon) {
console.log(polygon.getPath());
var vertices = polygon.getPath();
for (var i =0; i < vertices.getLength(); i++) {
var xy = vertices.getAt(i);
console.log(xy.lat() + ',' + xy.lng());
}
polys.push(polygon);
poly = polygon;
polygon.addListener('click', function(){
this.setMap(null);
});
});
$('.get_geo').click();
}
var id;
google.maps.event.addDomListener(window, 'load', init_map);
$('.get_geo').click(function(){
id = $(this).attr("id");
var bounds = new google.maps.LatLngBounds();
var i;
$.get( "get_polygon.php?gid="+id, function(data) {
poly = new google.maps.Polygon({
paths: eval(data),
//strokeColor: '#FF0000',
//strokeOpacity: 0.8,
//strokeWeight: 2,
//fillColor: '#FF0000',
//fillOpacity: 0.35
clickable: false,
editable: true,
});
var coors = eval(data);
for (i = 0; i < coors.length; i++) {
bounds.extend(new google.maps.LatLng(coors[i].lat, coors[i].lng));
}
var_map.setCenter(bounds.getCenter());
poly.setMap(var_map);
});
});
$('.geo_update').click(function(){
var vertices = poly.getPath();
var v = [];
for (var i =0; i < vertices.getLength(); i++) {
var xy = vertices.getAt(i);
v.push(xy.lat() + ' ' + xy.lng());
}
var d = v.join(";");
$.get( "set_polygon.php?gid="+id+"&d="+d, function(data) {
alert("Polígono actualizado con éxito.");
window.close();
});
});
$('.geo_cancel').click(function(){
window.close();
});
</script>
</body>
</html>