-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartSantanderMap.html
14522 lines (10983 loc) · 652 KB
/
SmartSantanderMap.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0033)http://www.smartsantander.eu/map/ -->
<html><script>(function main() {
// Create enabled event
function fireEnabledEvent() {
// If gli exists, then we are already present and shouldn't do anything
if (!window.gli) {
setTimeout(function () {
var enabledEvent = document.createEvent("Event");
enabledEvent.initEvent("WebGLEnabledEvent", true, true);
document.dispatchEvent(enabledEvent);
}, 0);
} else {
//console.log("WebGL Inspector already embedded on the page - disabling extension");
}
};
// Grab the path root from the extension
document.addEventListener("WebGLInspectorReadyEvent", function (e) {
var pathElement = document.getElementById("__webglpathroot");
if (window["gliloader"]) {
gliloader.pathRoot = pathElement.innerText;
} else {
// TODO: more?
window.gliCssUrl = pathElement.innerText + "gli.all.css";
}
}, false);
// Rewrite getContext to snoop for webgl
var originalGetContext = HTMLCanvasElement.prototype.getContext;
if (!HTMLCanvasElement.prototype.getContextRaw) {
HTMLCanvasElement.prototype.getContextRaw = originalGetContext;
}
HTMLCanvasElement.prototype.getContext = function () {
var ignoreCanvas = this.internalInspectorSurface;
if (ignoreCanvas) {
return originalGetContext.apply(this, arguments);
}
var result = originalGetContext.apply(this, arguments);
if (result == null) {
return null;
}
var contextNames = ["moz-webgl", "webkit-3d", "experimental-webgl", "webgl", "3d"];
var requestingWebGL = contextNames.indexOf(arguments[0]) != -1;
if (requestingWebGL) {
// Page is requesting a WebGL context!
fireEnabledEvent(this);
// If we are injected, inspect this context
if (window.gli) {
if (gli.host.inspectContext) {
// TODO: pull options from extension
result = gli.host.inspectContext(this, result);
// NOTE: execute in a timeout so that if the dom is not yet
// loaded this won't error out.
window.setTimeout(function() {
var hostUI = new gli.host.HostUI(result);
result.hostUI = hostUI; // just so we can access it later for debugging
}, 0);
}
}
}
return result;
};
})();</script><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">.gm-style .gm-style-iw{font-weight:300;font-size:13px}.gm-style .gm-iw{color:#2c2c2c}.gm-style .gm-iw b{font-weight:400}.gm-style .gm-iw a:link,.gm-style .gm-iw a:visited{color:#4272db;text-decoration:none}.gm-style .gm-iw a:hover{color:#4272db;text-decoration:underline}.gm-style .gm-iw .gm-title{font-weight:400;margin-bottom:1px}.gm-style .gm-iw .gm-basicinfo{line-height:18px;padding-bottom:12px}.gm-style .gm-iw .gm-website{padding-top:6px}.gm-style .gm-iw .gm-photos{padding-bottom:8px;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.gm-style .gm-iw .gm-sv,.gm-style .gm-iw .gm-ph{cursor:pointer;height:50px;width:100px;position:relative;overflow:hidden}.gm-style .gm-iw .gm-sv{padding-right:4px}.gm-style .gm-iw .gm-wsv{cursor:pointer;position:relative;overflow:hidden}.gm-style .gm-iw .gm-sv-label,.gm-style .gm-iw .gm-ph-label{cursor:pointer;position:absolute;bottom:6px;color:#fff;font-weight:400;text-shadow:rgba(0,0,0,0.7) 0 1px 4px;font-size:12px}.gm-style .gm-iw .gm-stars-b,.gm-style .gm-iw .gm-stars-f{height:13px;font-size:0}.gm-style .gm-iw .gm-stars-b{position:relative;background-position:0 0;width:65px;top:3px;margin:0 5px}.gm-style .gm-iw .gm-rev{line-height:20px;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.gm-style .gm-iw .gm-numeric-rev{font-size:16px;color:#dd4b39;font-weight:400}.gm-style .gm-iw.gm-transit{margin-left:15px}.gm-style .gm-iw.gm-transit td{vertical-align:top}.gm-style .gm-iw.gm-transit .gm-time{white-space:nowrap;color:#676767;font-weight:bold}.gm-style .gm-iw.gm-transit img{width:15px;height:15px;margin:1px 5px 0 -20px;float:left}.gm-iw {text-align:left;}.gm-iw .gm-numeric-rev {float:left;}.gm-iw .gm-photos,.gm-iw .gm-rev {direction:ltr;}.gm-iw .gm-stars-f, .gm-iw .gm-stars-b {background:url("http://maps.gstatic.com/mapfiles/api-3/images/review_stars_hdpi.png") no-repeat;background-size: 65px 26px;float:left;}.gm-iw .gm-stars-f {background-position:left -13px;}.gm-iw .gm-sv-label,.gm-iw .gm-ph-label {left: 4px;}</style><style type="text/css">.gm-style .gm-style-mtc label,.gm-style .gm-style-mtc div{font-weight:400}</style><style type="text/css">.gm-style .gm-style-cc span,.gm-style .gm-style-cc a,.gm-style .gm-style-mtc div{font-size:10px}</style><link type="text/css" rel="stylesheet" href="./SmartSantanderMap_files/css"><style type="text/css">@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}</style><style type="text/css">.gm-style{font-family:Roboto,Arial,sans-serif;font-size:11px;font-weight:400;text-decoration:none}</style>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<title>.: SmartSantander :: Map :.</title>
<link href="./SmartSantanderMap_files/default.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="./SmartSantanderMap_files/js"></script><script src="./SmartSantanderMap_files/main.js" type="text/javascript"></script>
<script type="text/javascript" src="./SmartSantanderMap_files/gears_init.js"></script>
<script type="text/javascript">
var map = null;
var infoWindow = null;
function detectBrowser() {
var useragent = navigator.userAgent;
var mapdiv = document.getElementById("map_canvas");
if (useragent.indexOf('iPhone') != -1 || useragent.indexOf('Android') != -1 ) {
mapdiv.style.width = '100%';
mapdiv.style.height = '100%';
} else {
mapdiv.style.width = '100%';
mapdiv.style.height = '100%';
}
}
function closeInfoWindow() {
infoWindow.close();
}
function openInfoWindow(marker, content,title) {
var markerLatLng = marker.getPosition();
infoWindow.setContent([
title
].join(''));
infoWindow.open(map, marker);
}
function initialize() {
detectBrowser();
var myLatlng = new google.maps.LatLng(43.460756,-3.807865);
var myOptions = {
zoom: 18,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.SATELLITE,
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
infoWindow = new google.maps.InfoWindow();
google.maps.event.addListener(map, 'click', function(){
closeInfoWindow();
});
var image2 = 'disability.png';
var image3 = 'parking.png';
var image5 = 'disability_off.png';
var image6 = 'parking_off.png';
var image7 = 'temperature.png';
var image1 = 'air.png';
var image8 = 'sound.png';
var image9 = 'light.png';
var image10 = 'meshlium_2.png';
var Latlng= new google.maps.LatLng(43.45487, -3.81289);
var marker1 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title1="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:32:27</br><br>Node: 737</br><br>Noise: 61.30dB</br><br>Battery: 76.00%</br></font></div>";
google.maps.event.addListener(marker1, 'click', function(){
openInfoWindow(marker1, "Marker 1", title1);
});
var Latlng= new google.maps.LatLng(43.45685, -3.81521);
var marker2 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title2="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 738</br><br>Noise: dB</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker2, 'click', function(){
openInfoWindow(marker2, "Marker 2", title2);
});
var Latlng= new google.maps.LatLng(43.45600, -3.81718);
var marker3 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title3="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-05-05 05:12:01</br><br>Node: 739</br><br>Noise: 69.00dB</br><br>Battery: 85.00%</br></font></div>";
google.maps.event.addListener(marker3, 'click', function(){
openInfoWindow(marker3, "Marker 3", title3);
});
var Latlng= new google.maps.LatLng(43.45466, -3.81251);
var marker4 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title4="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:32:31</br><br>Node: 736</br><br>Noise: 50.00dB</br><br>Battery: 77.00%</br></font></div>";
google.maps.event.addListener(marker4, 'click', function(){
openInfoWindow(marker4, "Marker 4", title4);
});
var Latlng= new google.maps.LatLng(43.45536, -3.81187);
var marker5 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title5="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:32:27</br><br>Node: 735</br><br>Noise: 70.40dB</br><br>Battery: 76.00%</br></font></div>";
google.maps.event.addListener(marker5, 'click', function(){
openInfoWindow(marker5, "Marker 5", title5);
});
var Latlng= new google.maps.LatLng(43.45802, -3.80995);
var marker6 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title6="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-07 14:37:15</br><br>Node: 734</br><br>Temperature: 16.70?C</br><br>Light: 2409.85lux</br><br>Battery: 74.00%</br></font></div>";
google.maps.event.addListener(marker6, 'click', function(){
openInfoWindow(marker6, "Marker 6", title6);
});
var Latlng= new google.maps.LatLng(43.45638, -3.81316);
var marker7 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title7="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-09-22 19:03:09</br><br>Node: 733</br><br>Temperature: 22.90?C</br><br>Light: 251.72lux</br><br>Battery: 11.00%</br></font></div>";
google.maps.event.addListener(marker7, 'click', function(){
openInfoWindow(marker7, "Marker 7", title7);
});
var Latlng= new google.maps.LatLng(43.45647, -3.81201);
var marker8 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title8="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-07 14:38:55</br><br>Node: 732</br><br>Noise: 88.50dB</br><br>Battery: 72.00%</br></font></div>";
google.maps.event.addListener(marker8, 'click', function(){
openInfoWindow(marker8, "Marker 8", title8);
});
var Latlng= new google.maps.LatLng(43.45340, -3.82147);
var marker9 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title9="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-04-18 13:42:35</br><br>Node: 726</br><br>Temperature: 15.22?C</br><br>Light: 0.00lux</br><br>Battery: 11.00%</br></font></div>";
google.maps.event.addListener(marker9, 'click', function(){
openInfoWindow(marker9, "Marker 9", title9);
});
var Latlng= new google.maps.LatLng(43.45665, -3.81549);
var marker10 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title10="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:27</br><br>Node: 727</br><br>Temperature: 17.87?C</br><br>Light: 0.00lux</br><br>Battery: 81.00%</br></font></div>";
google.maps.event.addListener(marker10, 'click', function(){
openInfoWindow(marker10, "Marker 10", title10);
});
var Latlng= new google.maps.LatLng(43.45379, -3.82363);
var marker11 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title11="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:26</br><br>Node: 728</br><br>Temperature: 17.54?C</br><br>Light: 0.00lux</br><br>Battery: 76.00%</br></font></div>";
google.maps.event.addListener(marker11, 'click', function(){
openInfoWindow(marker11, "Marker 11", title11);
});
var Latlng= new google.maps.LatLng(43.45432, -3.82113);
var marker12 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title12="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:26</br><br>Node: 729</br><br>Temperature: 18.25?C</br><br>Light: 4627.15lux</br><br>Battery: 72.00%</br></font></div>";
google.maps.event.addListener(marker12, 'click', function(){
openInfoWindow(marker12, "Marker 12", title12);
});
var Latlng= new google.maps.LatLng(43.45626, -3.81679);
var marker13 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title13="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:22</br><br>Node: 730</br><br>Temperature: 21.67?C</br><br>Light: 19450.79lux</br><br>Battery: 73.00%</br></font></div>";
google.maps.event.addListener(marker13, 'click', function(){
openInfoWindow(marker13, "Marker 13", title13);
});
var Latlng= new google.maps.LatLng(43.45664, -3.81603);
var marker14 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title14="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:16</br><br>Node: 731</br><br>Temperature: 211.03?C</br><br>Light: 1135.73lux</br><br>Battery: 65.00%</br></font></div>";
google.maps.event.addListener(marker14, 'click', function(){
openInfoWindow(marker14, "Marker 14", title14);
});
var Latlng= new google.maps.LatLng(43.45698, -3.81472);
var marker15 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title15="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-02-24 17:56:25</br><br>Node: 708</br><br>Temperature: 5.54?C</br><br>Light: 5.73lux</br><br>Battery: 73.00%</br></font></div>";
google.maps.event.addListener(marker15, 'click', function(){
openInfoWindow(marker15, "Marker 15", title15);
});
var Latlng= new google.maps.LatLng(43.45468, -3.82038);
var marker16 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title16="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-09-10 17:27:04</br><br>Node: 710</br><br>Temperature: 33.54?C</br><br>Light: 0.00lux</br><br>Battery: 56.00%</br></font></div>";
google.maps.event.addListener(marker16, 'click', function(){
openInfoWindow(marker16, "Marker 16", title16);
});
var Latlng= new google.maps.LatLng(43.45268, -3.82585);
var marker17 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title17="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-04-24 15:23:57</br><br>Node: 711</br><br>Temperature: 18.45?C</br><br>Light: 0.00lux</br><br>Battery: 68.00%</br></font></div>";
google.maps.event.addListener(marker17, 'click', function(){
openInfoWindow(marker17, "Marker 17", title17);
});
var Latlng= new google.maps.LatLng(43.45515, -3.81426);
var marker18 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title18="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 712</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker18, 'click', function(){
openInfoWindow(marker18, "Marker 18", title18);
});
var Latlng= new google.maps.LatLng(43.45460, -3.81731);
var marker19 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title19="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-02-15 11:02:56</br><br>Node: 713</br><br>Temperature: 12.00?C</br><br>Light: 0.03lux</br><br>Battery: 79.00%</br></font></div>";
google.maps.event.addListener(marker19, 'click', function(){
openInfoWindow(marker19, "Marker 19", title19);
});
var Latlng= new google.maps.LatLng(43.45278, -3.82307);
var marker20 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title20="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 714</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker20, 'click', function(){
openInfoWindow(marker20, "Marker 20", title20);
});
var Latlng= new google.maps.LatLng(43.45519, -3.81811);
var marker21 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title21="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-04-16 16:19:48</br><br>Node: 715</br><br>Temperature: 17.41?C</br><br>Light: 0.00lux</br><br>Battery: 9.00%</br></font></div>";
google.maps.event.addListener(marker21, 'click', function(){
openInfoWindow(marker21, "Marker 21", title21);
});
var Latlng= new google.maps.LatLng(43.45212, -3.82517);
var marker22 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title22="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 716</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker22, 'click', function(){
openInfoWindow(marker22, "Marker 22", title22);
});
var Latlng= new google.maps.LatLng(43.45701, -3.81416);
var marker23 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title23="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 09:29:43</br><br>Node: 717</br><br>Temperature: 11.41?C</br><br>Light: 0.00lux</br><br>Battery: 78.00%</br></font></div>";
google.maps.event.addListener(marker23, 'click', function(){
openInfoWindow(marker23, "Marker 23", title23);
});
var Latlng= new google.maps.LatLng(43.45244, -3.82414);
var marker24 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title24="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 12:29:28</br><br>Node: 718</br><br>Temperature: 20.70?C</br><br>Light: 0.55lux</br><br>Battery: 78.00%</br></font></div>";
google.maps.event.addListener(marker24, 'click', function(){
openInfoWindow(marker24, "Marker 24", title24);
});
var Latlng= new google.maps.LatLng(43.45498, -3.81543);
var marker25 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title25="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 719</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker25, 'click', function(){
openInfoWindow(marker25, "Marker 25", title25);
});
var Latlng= new google.maps.LatLng(43.45407, -3.82181);
var marker26 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title26="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:39</br><br>Node: 720</br><br>Temperature: 17.93?C</br><br>Light: 0.00lux</br><br>Battery: 77.00%</br></font></div>";
google.maps.event.addListener(marker26, 'click', function(){
openInfoWindow(marker26, "Marker 26", title26);
});
var Latlng= new google.maps.LatLng(43.45429, -3.81820);
var marker27 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title27="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:32:13</br><br>Node: 721</br><br>Temperature: 27.09?C</br><br>Light: 0.00lux</br><br>Battery: 78.00%</br></font></div>";
google.maps.event.addListener(marker27, 'click', function(){
openInfoWindow(marker27, "Marker 27", title27);
});
var Latlng= new google.maps.LatLng(43.45471, -3.81588);
var marker28 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title28="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:51</br><br>Node: 722</br><br>Temperature: 18.19?C</br><br>Light: 0.00lux</br><br>Battery: 76.00%</br></font></div>";
google.maps.event.addListener(marker28, 'click', function(){
openInfoWindow(marker28, "Marker 28", title28);
});
var Latlng= new google.maps.LatLng(43.45477, -3.81625);
var marker29 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title29="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 723</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker29, 'click', function(){
openInfoWindow(marker29, "Marker 29", title29);
});
var Latlng= new google.maps.LatLng(43.45347, -3.82426);
var marker30 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title30="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:53</br><br>Node: 724</br><br>Temperature: 18.96?C</br><br>Light: 0.00lux</br><br>Battery: 76.00%</br></font></div>";
google.maps.event.addListener(marker30, 'click', function(){
openInfoWindow(marker30, "Marker 30", title30);
});
var Latlng= new google.maps.LatLng(43.45557, -3.81413);
var marker31 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title31="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-02-11 18:24:48</br><br>Node: 725</br><br>Temperature: 6.32?C</br><br>Light: 0.02lux</br><br>Battery: 63.00%</br></font></div>";
google.maps.event.addListener(marker31, 'click', function(){
openInfoWindow(marker31, "Marker 31", title31);
});
var Latlng= new google.maps.LatLng(43.46088, -3.81808);
var marker32 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title32="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-06-19 16:45:51</br><br>Node: 687</br><br>Temperature: 12.64?C</br><br>Light: 0.15lux</br><br>Battery: 9.00%</br></font></div>";
google.maps.event.addListener(marker32, 'click', function(){
openInfoWindow(marker32, "Marker 32", title32);
});
var Latlng= new google.maps.LatLng(43.45893, -3.82424);
var marker33 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title33="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:39</br><br>Node: 688</br><br>Temperature: -26.51?C</br><br>Light: 0.00lux</br><br>Battery: 74.00%</br></font></div>";
google.maps.event.addListener(marker33, 'click', function(){
openInfoWindow(marker33, "Marker 33", title33);
});
var Latlng= new google.maps.LatLng(43.46008, -3.82100);
var marker34 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title34="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:57</br><br>Node: 689</br><br>Temperature: 18.51?C</br><br>Light: 2666.07lux</br><br>Battery: 78.00%</br></font></div>";
google.maps.event.addListener(marker34, 'click', function(){
openInfoWindow(marker34, "Marker 34", title34);
});
var Latlng= new google.maps.LatLng(43.45904, -3.82382);
var marker35 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title35="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-05-19 06:18:12</br><br>Node: 690</br><br>Temperature: 8.45?C</br><br>Light: 0.00lux</br><br>Battery: 88.00%</br></font></div>";
google.maps.event.addListener(marker35, 'click', function(){
openInfoWindow(marker35, "Marker 35", title35);
});
var Latlng= new google.maps.LatLng(43.46068, -3.81887);
var marker36 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title36="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:13</br><br>Node: 691</br><br>Temperature: 17.35?C</br><br>Light: 113.86lux</br><br>Battery: 75.00%</br></font></div>";
google.maps.event.addListener(marker36, 'click', function(){
openInfoWindow(marker36, "Marker 36", title36);
});
var Latlng= new google.maps.LatLng(43.45970, -3.82137);
var marker37 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title37="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:23</br><br>Node: 692</br><br>Temperature: 17.80?C</br><br>Light: 0.00lux</br><br>Battery: 80.00%</br></font></div>";
google.maps.event.addListener(marker37, 'click', function(){
openInfoWindow(marker37, "Marker 37", title37);
});
var Latlng= new google.maps.LatLng(43.45443, -3.81748);
var marker38 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title38="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 693</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker38, 'click', function(){
openInfoWindow(marker38, "Marker 38", title38);
});
var Latlng= new google.maps.LatLng(43.45322, -3.82125);
var marker39 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title39="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:28:32</br><br>Node: 694</br><br>Temperature: 19.16?C</br><br>Light: 8404.60lux</br><br>Battery: 72.00%</br></font></div>";
google.maps.event.addListener(marker39, 'click', function(){
openInfoWindow(marker39, "Marker 39", title39);
});
var Latlng= new google.maps.LatLng(43.45675, -3.81482);
var marker40 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title40="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-02-19 16:47:13</br><br>Node: 695</br><br>Temperature: 16.83?C</br><br>Light: 0.00lux</br><br>Battery: 72.00%</br></font></div>";
google.maps.event.addListener(marker40, 'click', function(){
openInfoWindow(marker40, "Marker 40", title40);
});
var Latlng= new google.maps.LatLng(43.45384, -3.82186);
var marker41 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title41="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:28:29</br><br>Node: 696</br><br>Temperature: 17.74?C</br><br>Light: 0.00lux</br><br>Battery: 78.00%</br></font></div>";
google.maps.event.addListener(marker41, 'click', function(){
openInfoWindow(marker41, "Marker 41", title41);
});
var Latlng= new google.maps.LatLng(43.45401, -3.81835);
var marker42 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title42="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-08-23 16:06:48</br><br>Node: 697</br><br>Temperature: -50.00?C</br><br>Light: 6561887.40lux</br><br>Battery: 12.00%</br></font></div>";
google.maps.event.addListener(marker42, 'click', function(){
openInfoWindow(marker42, "Marker 42", title42);
});
var Latlng= new google.maps.LatLng(43.45545, -3.81759);
var marker43 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title43="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:00</br><br>Node: 698</br><br>Temperature: 17.48?C</br><br>Light: 0.00lux</br><br>Battery: 76.00%</br></font></div>";
google.maps.event.addListener(marker43, 'click', function(){
openInfoWindow(marker43, "Marker 43", title43);
});
var Latlng= new google.maps.LatLng(43.45496, -3.81946);
var marker44 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title44="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-07-14 00:36:43</br><br>Node: 699</br><br>Temperature: 18.45?C</br><br>Light: 0.00lux</br><br>Battery: 9.00%</br></font></div>";
google.maps.event.addListener(marker44, 'click', function(){
openInfoWindow(marker44, "Marker 44", title44);
});
var Latlng= new google.maps.LatLng(43.45595, -3.81694);
var marker45 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title45="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:28:39</br><br>Node: 700</br><br>Temperature: 18.19?C</br><br>Light: 0.00lux</br><br>Battery: 77.00%</br></font></div>";
google.maps.event.addListener(marker45, 'click', function(){
openInfoWindow(marker45, "Marker 45", title45);
});
var Latlng= new google.maps.LatLng(43.45638, -3.81454);
var marker46 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title46="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 701</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker46, 'click', function(){
openInfoWindow(marker46, "Marker 46", title46);
});
var Latlng= new google.maps.LatLng(43.45384, -3.82287);
var marker47 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title47="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-02-18 14:30:08</br><br>Node: 702</br><br>Temperature: 14.58?C</br><br>Light: 0.00lux</br><br>Battery: 11.00%</br></font></div>";
google.maps.event.addListener(marker47, 'click', function(){
openInfoWindow(marker47, "Marker 47", title47);
});
var Latlng= new google.maps.LatLng(43.45303, -3.82210);
var marker48 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title48="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2013-03-13 14:57:52</br><br>Node: 703</br><br>Temperature: 7.35?C</br><br>Light: 24.79lux</br><br>Battery: 80.00%</br></font></div>";
google.maps.event.addListener(marker48, 'click', function(){
openInfoWindow(marker48, "Marker 48", title48);
});
var Latlng= new google.maps.LatLng(43.45416, -3.82226);
var marker49 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title49="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:28:38</br><br>Node: 704</br><br>Temperature: 17.16?C</br><br>Light: 586.26lux</br><br>Battery: 75.00%</br></font></div>";
google.maps.event.addListener(marker49, 'click', function(){
openInfoWindow(marker49, "Marker 49", title49);
});
var Latlng= new google.maps.LatLng(43.45635, -3.81632);
var marker50 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title50="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:29</br><br>Node: 705</br><br>Temperature: 17.67?C</br><br>Light: 0.00lux</br><br>Battery: 75.00%</br></font></div>";
google.maps.event.addListener(marker50, 'click', function(){
openInfoWindow(marker50, "Marker 50", title50);
});
var Latlng= new google.maps.LatLng(43.45443, -3.81690);
var marker51 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title51="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 0000-00-00 00:00:00</br><br>Node: 706</br><br>Temperature: ?C</br><br>Light: lux</br><br>Battery: 0.00%</br></font></div>";
google.maps.event.addListener(marker51, 'click', function(){
openInfoWindow(marker51, "Marker 51", title51);
});
var Latlng= new google.maps.LatLng(43.45185, -3.82593);
var marker52 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title52="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 12:29:28</br><br>Node: 707</br><br>Temperature: -50.00?C</br><br>Light: 0.00lux</br><br>Battery: 76.00%</br></font></div>";
google.maps.event.addListener(marker52, 'click', function(){
openInfoWindow(marker52, "Marker 52", title52);
});
var Latlng= new google.maps.LatLng(43.46415, -3.80881);
var marker53 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title53="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:28:38</br><br>Node: 517</br><br>Temperature: 11.16?C</br><br>Light: 0.00lux</br><br>Battery: 75.00%</br></font></div>";
google.maps.event.addListener(marker53, 'click', function(){
openInfoWindow(marker53, "Marker 53", title53);
});
var Latlng= new google.maps.LatLng(43.46442, -3.80884);
var marker54 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title54="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:23</br><br>Node: 518</br><br>Temperature: -20.51?C</br><br>Light: 0.08lux</br><br>Battery: 69.00%</br></font></div>";
google.maps.event.addListener(marker54, 'click', function(){
openInfoWindow(marker54, "Marker 54", title54);
});
var Latlng= new google.maps.LatLng(43.46475, -3.80885);
var marker55 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title55="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:40</br><br>Node: 519</br><br>Temperature: 17.29?C</br><br>Light: 1737.16lux</br><br>Battery: 63.00%</br></font></div>";
google.maps.event.addListener(marker55, 'click', function(){
openInfoWindow(marker55, "Marker 55", title55);
});
var Latlng= new google.maps.LatLng(43.46481, -3.80929);
var marker56 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title56="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-08-22 11:44:52</br><br>Node: 520</br><br>Temperature: 18.90?C</br><br>Light: 0.00lux</br><br>Battery: 34.00%</br></font></div>";
google.maps.event.addListener(marker56, 'click', function(){
openInfoWindow(marker56, "Marker 56", title56);
});
var Latlng= new google.maps.LatLng(43.46486, -3.80939);
var marker57 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title57="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-07-10 05:58:21</br><br>Node: 522</br><br>Noise: 50.00dB</br><br>Battery: 11.00%</br></font></div>";
google.maps.event.addListener(marker57, 'click', function(){
openInfoWindow(marker57, "Marker 57", title57);
});
var Latlng= new google.maps.LatLng(43.46358, -3.80218);
var marker58 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title58="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:54</br><br>Node: 523</br><br>Temperature: 26.51?C</br><br>Light: 0.00lux</br><br>Battery: 75.00%</br></font></div>";
google.maps.event.addListener(marker58, 'click', function(){
openInfoWindow(marker58, "Marker 58", title58);
});
var Latlng= new google.maps.LatLng(43.46268, -3.80264);
var marker59 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title59="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:16</br><br>Node: 524</br><br>Temperature: 17.87?C</br><br>Light: 1737.16lux</br><br>Battery: 73.00%</br></font></div>";
google.maps.event.addListener(marker59, 'click', function(){
openInfoWindow(marker59, "Marker 59", title59);
});
var Latlng= new google.maps.LatLng(43.46349, -3.80142);
var marker60 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title60="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:56</br><br>Node: 525</br><br>Temperature: 17.61?C</br><br>Light: 0.00lux</br><br>Battery: 74.00%</br></font></div>";
google.maps.event.addListener(marker60, 'click', function(){
openInfoWindow(marker60, "Marker 60", title60);
});
var Latlng= new google.maps.LatLng(43.46254, -3.80129);
var marker61 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title61="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:32</br><br>Node: 526</br><br>Temperature: -33.67?C</br><br>Light: 0.00lux</br><br>Battery: 73.00%</br></font></div>";
google.maps.event.addListener(marker61, 'click', function(){
openInfoWindow(marker61, "Marker 61", title61);
});
var Latlng= new google.maps.LatLng(43.46296, -3.80129);
var marker62 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image8,
});
var title62="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:37</br><br>Node: 527</br><br>Noise: 50.00dB</br><br>Battery: 71.00%</br></font></div>";
google.maps.event.addListener(marker62, 'click', function(){
openInfoWindow(marker62, "Marker 62", title62);
});
var Latlng= new google.maps.LatLng(43.46310, -3.80123);
var marker63 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title63="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:28:49</br><br>Node: 528</br><br>Temperature: 17.93?C</br><br>Light: 0.00lux</br><br>Battery: 77.00%</br></font></div>";
google.maps.event.addListener(marker63, 'click', function(){
openInfoWindow(marker63, "Marker 63", title63);
});
var Latlng= new google.maps.LatLng(43.46313, -3.80097);
var marker64 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title64="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:32:00</br><br>Node: 529</br><br>Temperature: 18.96?C</br><br>Light: 7966.31lux</br><br>Battery: 69.00%</br></font></div>";
google.maps.event.addListener(marker64, 'click', function(){
openInfoWindow(marker64, "Marker 64", title64);
});
var Latlng= new google.maps.LatLng(43.46316, -3.80046);
var marker65 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title65="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:31:32</br><br>Node: 530</br><br>Temperature: 17.48?C</br><br>Light: 0.00lux</br><br>Battery: 73.00%</br></font></div>";
google.maps.event.addListener(marker65, 'click', function(){
openInfoWindow(marker65, "Marker 65", title65);
});
var Latlng= new google.maps.LatLng(43.46320, -3.80020);
var marker66 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title66="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:47</br><br>Node: 531</br><br>Temperature: 17.16?C</br><br>Light: 2576.69lux</br><br>Battery: 70.00%</br></font></div>";
google.maps.event.addListener(marker66, 'click', function(){
openInfoWindow(marker66, "Marker 66", title66);
});
var Latlng= new google.maps.LatLng(43.46320, -3.80000);
var marker67 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title67="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:19</br><br>Node: 532</br><br>Temperature: 18.19?C</br><br>Light: 2450.15lux</br><br>Battery: 75.00%</br></font></div>";
google.maps.event.addListener(marker67, 'click', function(){
openInfoWindow(marker67, "Marker 67", title67);
});
var Latlng= new google.maps.LatLng(43.46323, -3.79979);
var marker68 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title68="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:30:37</br><br>Node: 533</br><br>Temperature: 18.00?C</br><br>Light: 240.88lux</br><br>Battery: 73.00%</br></font></div>";
google.maps.event.addListener(marker68, 'click', function(){
openInfoWindow(marker68, "Marker 68", title68);
});
var Latlng= new google.maps.LatLng(43.46289, -3.80090);
var marker69 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title69="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-09-22 08:45:11</br><br>Node: 534</br><br>Temperature: -27.87?C</br><br>Light: 24.39lux</br><br>Battery: 86.00%</br></font></div>";
google.maps.event.addListener(marker69, 'click', function(){
openInfoWindow(marker69, "Marker 69", title69);
});
var Latlng= new google.maps.LatLng(43.46294, -3.80035);
var marker70 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title70="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-10-21 16:10:45</br><br>Node: 535</br><br>Temperature: 28.45?C</br><br>Light: 54230.22lux</br><br>Battery: 16.00%</br></font></div>";
google.maps.event.addListener(marker70, 'click', function(){
openInfoWindow(marker70, "Marker 70", title70);
});
var Latlng= new google.maps.LatLng(43.46301, -3.79968);
var marker71 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title71="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:34</br><br>Node: 536</br><br>Temperature: 18.77?C</br><br>Light: 2759.74lux</br><br>Battery: 73.00%</br></font></div>";
google.maps.event.addListener(marker71, 'click', function(){
openInfoWindow(marker71, "Marker 71", title71);
});
var Latlng= new google.maps.LatLng(43.46280, -3.80031);
var marker72 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title72="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:32:22</br><br>Node: 537</br><br>Temperature: 19.16?C</br><br>Light: 7966.31lux</br><br>Battery: 69.00%</br></font></div>";
google.maps.event.addListener(marker72, 'click', function(){
openInfoWindow(marker72, "Marker 72", title72);
});
var Latlng= new google.maps.LatLng(43.46282, -3.80018);
var marker73 = new google.maps.Marker({
map:map,
position: Latlng,
icon: image9,
});
var title73="<div style='text-align:justify;'><font size='-2' face='Verdana, Arial, Helvetica, sans-serif'>Last update: 2014-11-12 15:29:59</br><br>Node: 538</br><br>Temperature: 21.41?C</br><br>Light: 0.00lux</br><br>Battery: 83.00%</br></font></div>";