-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmapSample.html
More file actions
8620 lines (4978 loc) · 439 KB
/
mapSample.html
File metadata and controls
8620 lines (4978 loc) · 439 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
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>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style> #map_a07f2b4b807246b39f15c9e70bb720e8 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
</head>
<body>
<div class="folium-map" id="map_a07f2b4b807246b39f15c9e70bb720e8" ></div>
</body>
<script>
var bounds = null;
var map_a07f2b4b807246b39f15c9e70bb720e8 = L.map(
'map_a07f2b4b807246b39f15c9e70bb720e8',
{center: [38.82344476833977,-108.02881699034758],
zoom: 4,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_3d84cc32c65b4cc8863b6b18254c5bc4 = L.tileLayer(
'https://{s}.tiles.mapbox.com/v3/mapbox.world-bright/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_a07f2b4b807246b39f15c9e70bb720e8);
var marker_cluster_c52a782a757b430cba9c313f8df883af = L.markerClusterGroup({
});
map_a07f2b4b807246b39f15c9e70bb720e8.addLayer(marker_cluster_c52a782a757b430cba9c313f8df883af);
var marker_aaf8bc5ef3d6442aa8707f67249932bb = L.marker(
[53.237,-168.3619],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_2d8526b8d1ff4f9b82270b7358958ff4 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_aaf8bc5ef3d6442aa8707f67249932bb.setIcon(icon_2d8526b8d1ff4f9b82270b7358958ff4);
var popup_0ca14c6649e74bb889c72876ad19f76b = L.popup({maxWidth: '300'});
var html_bbcd55a992cd49b88d392a49f1d9713b = $('<div id="html_bbcd55a992cd49b88d392a49f1d9713b" style="width: 100.0%; height: 100.0%;"><div style="background: orange;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/ak12383570> <h4>M 2.2 - 47km NE of Nikolski, Alaska</h4> </a>Magnitude : 2.2 ml <br>Depth : 12.1 <br>Latitude : 53.237 <br>Longitude : -168.3619 <br>Date Time : 2016-01-01 23:52:04</div></div>')[0];
popup_0ca14c6649e74bb889c72876ad19f76b.setContent(html_bbcd55a992cd49b88d392a49f1d9713b);
marker_aaf8bc5ef3d6442aa8707f67249932bb.bindPopup(popup_0ca14c6649e74bb889c72876ad19f76b);
var marker_56826ba2fef5418e93f1e1f9a3f830d5 = L.marker(
[34.2031667,-117.4028333],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_1f05d0d8ea434bc28c9f3a45b2f8919c = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_56826ba2fef5418e93f1e1f9a3f830d5.setIcon(icon_1f05d0d8ea434bc28c9f3a45b2f8919c);
var popup_410357a8b9644d40a5fd565cb560b15a = L.popup({maxWidth: '300'});
var html_f52ffccd106643ea94663e33ee5665b8 = $('<div id="html_f52ffccd106643ea94663e33ee5665b8" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/ci37509488> <h4>M 0.6 - 2km S of Devore, CA</h4> </a>Magnitude : 0.6 ml <br>Depth : 2.99 <br>Latitude : 34.2031667 <br>Longitude : -117.4028333 <br>Date Time : 2016-01-01 23:41:23.670000</div></div>')[0];
popup_410357a8b9644d40a5fd565cb560b15a.setContent(html_f52ffccd106643ea94663e33ee5665b8);
marker_56826ba2fef5418e93f1e1f9a3f830d5.bindPopup(popup_410357a8b9644d40a5fd565cb560b15a);
var marker_8899e5d09b554a5086cd52f2936af77a = L.marker(
[26.5711,55.1188],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_2f6b672609c2479eb4eb8096dda10171 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8899e5d09b554a5086cd52f2936af77a.setIcon(icon_2f6b672609c2479eb4eb8096dda10171);
var popup_92beb531f0434756a3e9dfe03ffe6eb2 = L.popup({maxWidth: '300'});
var html_5b78229f25ba47eb999bacb418408a58 = $('<div id="html_5b78229f25ba47eb999bacb418408a58" style="width: 100.0%; height: 100.0%;"><div style="background: red;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004ddg> <h4>M 4.3 - 23km E of Bandar-e Lengeh, Iran</h4> </a>Magnitude : 4.3 mb <br>Depth : 10.0 <br>Latitude : 26.5711 <br>Longitude : 55.1188 <br>Date Time : 2016-01-01 23:17:29.490000</div></div>')[0];
popup_92beb531f0434756a3e9dfe03ffe6eb2.setContent(html_5b78229f25ba47eb999bacb418408a58);
marker_8899e5d09b554a5086cd52f2936af77a.bindPopup(popup_92beb531f0434756a3e9dfe03ffe6eb2);
var marker_9ab90707c74d4885b93d7f0be9c4629f = L.marker(
[35.9688,-97.4016],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_80f3edcd55e64404bdda8b08b694e460 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_9ab90707c74d4885b93d7f0be9c4629f.setIcon(icon_80f3edcd55e64404bdda8b08b694e460);
var popup_9c3ac8d083744ef0a9ed7b4d246c10a2 = L.popup({maxWidth: '300'});
var html_8d517c69b7524224923590b654413e75 = $('<div id="html_8d517c69b7524224923590b654413e75" style="width: 100.0%; height: 100.0%;"><div style="background: red;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004asf> <h4>M 3.2 - 10km NNE of Guthrie, Oklahoma</h4> </a>Magnitude : 3.2 mb_lg <br>Depth : 5.0 <br>Latitude : 35.9688 <br>Longitude : -97.4016 <br>Date Time : 2016-01-01 23:15:58.850000</div></div>')[0];
popup_9c3ac8d083744ef0a9ed7b4d246c10a2.setContent(html_8d517c69b7524224923590b654413e75);
marker_9ab90707c74d4885b93d7f0be9c4629f.bindPopup(popup_9c3ac8d083744ef0a9ed7b4d246c10a2);
var marker_99531402dda1472885429312fd8c37d0 = L.marker(
[53.9447,-160.2874],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_de8c9e9ab3c2411cbb7f3323a70056c3 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_99531402dda1472885429312fd8c37d0.setIcon(icon_de8c9e9ab3c2411cbb7f3323a70056c3);
var popup_f776bf1c94c8415ca68c04425df90871 = L.popup({maxWidth: '300'});
var html_914e7b2c9d34434fabe8d4e8ad430c39 = $('<div id="html_914e7b2c9d34434fabe8d4e8ad430c39" style="width: 100.0%; height: 100.0%;"><div style="background: red;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004bmy> <h4>M 3.4 - 105km SSW of Chernabura Island, Alaska</h4> </a>Magnitude : 3.4 ml <br>Depth : 33.66 <br>Latitude : 53.9447 <br>Longitude : -160.2874 <br>Date Time : 2016-01-01 23:13:33.210000</div></div>')[0];
popup_f776bf1c94c8415ca68c04425df90871.setContent(html_914e7b2c9d34434fabe8d4e8ad430c39);
marker_99531402dda1472885429312fd8c37d0.bindPopup(popup_f776bf1c94c8415ca68c04425df90871);
var marker_f27a77b167bb457ea0a8b0b735b0e725 = L.marker(
[38.7630005,-122.784668],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_355199fa5e2344d39664b42cf9dc2151 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f27a77b167bb457ea0a8b0b735b0e725.setIcon(icon_355199fa5e2344d39664b42cf9dc2151);
var popup_1042d89c399a4529aae40c20d8bbcd65 = L.popup({maxWidth: '300'});
var html_4f030e8cca044a88ac1a73eba4ef9ec6 = $('<div id="html_4f030e8cca044a88ac1a73eba4ef9ec6" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nc72572465> <h4>M 0.8 - Northern California</h4> </a>Magnitude : 0.83 md <br>Depth : -0.78 <br>Latitude : 38.7630005 <br>Longitude : -122.784668 <br>Date Time : 2016-01-01 23:09:03.830000</div></div>')[0];
popup_1042d89c399a4529aae40c20d8bbcd65.setContent(html_4f030e8cca044a88ac1a73eba4ef9ec6);
marker_f27a77b167bb457ea0a8b0b735b0e725.bindPopup(popup_1042d89c399a4529aae40c20d8bbcd65);
var marker_5cf8459c29fb4e3f8c591345f70b6b96 = L.marker(
[-4.7301,139.8842],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_c679932c4e1c4525b7b0f7d373e395a4 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'darkred',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5cf8459c29fb4e3f8c591345f70b6b96.setIcon(icon_c679932c4e1c4525b7b0f7d373e395a4);
var popup_391917d10aaa458cbaf90bacfea14c81 = L.popup({maxWidth: '300'});
var html_4c01d620b9db4600a06927084e363f59 = $('<div id="html_4c01d620b9db4600a06927084e363f59" style="width: 100.0%; height: 100.0%;"><div style="background: darkred;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004ddf> <h4>M 4.6 - 156km NNW of Tanahmerah, Indonesia</h4> </a>Magnitude : 4.6 mb <br>Depth : 15.32 <br>Latitude : -4.7301 <br>Longitude : 139.8842 <br>Date Time : 2016-01-01 23:07:53.810000</div></div>')[0];
popup_391917d10aaa458cbaf90bacfea14c81.setContent(html_4c01d620b9db4600a06927084e363f59);
marker_5cf8459c29fb4e3f8c591345f70b6b96.bindPopup(popup_391917d10aaa458cbaf90bacfea14c81);
var marker_14e348752cc44cbd8b9151ab988d4316 = L.marker(
[-20.5653,-179.1565],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_d64f010fa4ce4156a83f7bc69588fcd9 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'darkred',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_14e348752cc44cbd8b9151ab988d4316.setIcon(icon_d64f010fa4ce4156a83f7bc69588fcd9);
var popup_e55aa8ccd0044f7eb1592e025b8bea72 = L.popup({maxWidth: '300'});
var html_4f8c68dbf3c84486a949d3c7f0dd83ca = $('<div id="html_4f8c68dbf3c84486a949d3c7f0dd83ca" style="width: 100.0%; height: 100.0%;"><div style="background: darkred;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004asd> <h4>M 5.0 - 48km W of Ndoi Island, Fiji</h4> </a>Magnitude : 5.0 mb <br>Depth : 642.75 <br>Latitude : -20.5653 <br>Longitude : -179.1565 <br>Date Time : 2016-01-01 23:04:52.280000</div></div>')[0];
popup_e55aa8ccd0044f7eb1592e025b8bea72.setContent(html_4f8c68dbf3c84486a949d3c7f0dd83ca);
marker_14e348752cc44cbd8b9151ab988d4316.bindPopup(popup_e55aa8ccd0044f7eb1592e025b8bea72);
var marker_5c3d4625d71f43fc9c4edd825c34fbb0 = L.marker(
[46.0053333,-111.4053333],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_b7164192730e4e5aa41a987bf0890901 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5c3d4625d71f43fc9c4edd825c34fbb0.setIcon(icon_b7164192730e4e5aa41a987bf0890901);
var popup_d6577d704a274c66be9679c5dc7d820e = L.popup({maxWidth: '300'});
var html_677f3f5f2c3b488dad0312273995a480 = $('<div id="html_677f3f5f2c3b488dad0312273995a480" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/mb80118319> <h4>M 1.1 - 16km NE of Three Forks, Montana</h4> </a>Magnitude : 1.05 ml <br>Depth : 5.84 <br>Latitude : 46.0053333 <br>Longitude : -111.4053333 <br>Date Time : 2016-01-01 23:04:15.380000</div></div>')[0];
popup_d6577d704a274c66be9679c5dc7d820e.setContent(html_677f3f5f2c3b488dad0312273995a480);
marker_5c3d4625d71f43fc9c4edd825c34fbb0.bindPopup(popup_d6577d704a274c66be9679c5dc7d820e);
var marker_a1763f41b1ae4f7c888b14b2ad5ee7b5 = L.marker(
[41.8871,-119.6086],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_41cac40bec954965a2582cf62476b48c = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a1763f41b1ae4f7c888b14b2ad5ee7b5.setIcon(icon_41cac40bec954965a2582cf62476b48c);
var popup_9c7be4da8dda42aab7981d2da0def9ef = L.popup({maxWidth: '300'});
var html_5a34ecd59b844d0684025ae412e05f0d = $('<div id="html_5a34ecd59b844d0684025ae412e05f0d" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nn00525082> <h4>M 1.6 - 69km ESE of Lakeview, Oregon</h4> </a>Magnitude : 1.6 ml <br>Depth : 6.9 <br>Latitude : 41.8871 <br>Longitude : -119.6086 <br>Date Time : 2016-01-01 22:55:40.445000</div></div>')[0];
popup_9c7be4da8dda42aab7981d2da0def9ef.setContent(html_5a34ecd59b844d0684025ae412e05f0d);
marker_a1763f41b1ae4f7c888b14b2ad5ee7b5.bindPopup(popup_9c7be4da8dda42aab7981d2da0def9ef);
var marker_5065ad6c4e0143aab118ed5d66f3d9b9 = L.marker(
[38.8093338,-122.8246689],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_e4cfe9b2d5cd421b8e1e38a07125b0fc = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5065ad6c4e0143aab118ed5d66f3d9b9.setIcon(icon_e4cfe9b2d5cd421b8e1e38a07125b0fc);
var popup_a094a99713df4c199e78a33f14e49d69 = L.popup({maxWidth: '300'});
var html_acfd707e3c214957a1684da6804d9864 = $('<div id="html_acfd707e3c214957a1684da6804d9864" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nc72572460> <h4>M 0.1 - Northern California</h4> </a>Magnitude : 0.06 md <br>Depth : 2.69 <br>Latitude : 38.8093338 <br>Longitude : -122.8246689 <br>Date Time : 2016-01-01 22:50:08.690000</div></div>')[0];
popup_a094a99713df4c199e78a33f14e49d69.setContent(html_acfd707e3c214957a1684da6804d9864);
marker_5065ad6c4e0143aab118ed5d66f3d9b9.bindPopup(popup_a094a99713df4c199e78a33f14e49d69);
var marker_2984a48487594a20b0498c4de480641d = L.marker(
[38.7610016,-122.7411652],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_36a355fcb819446cbdf5408567c544a7 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2984a48487594a20b0498c4de480641d.setIcon(icon_36a355fcb819446cbdf5408567c544a7);
var popup_54c7a07e2e0240a1b32c96caedefe134 = L.popup({maxWidth: '300'});
var html_0df8e855ef4f4ac595bacc72b4806185 = $('<div id="html_0df8e855ef4f4ac595bacc72b4806185" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nc72572450> <h4>M 0.6 - Northern California</h4> </a>Magnitude : 0.56 md <br>Depth : 1.24 <br>Latitude : 38.7610016 <br>Longitude : -122.7411652 <br>Date Time : 2016-01-01 22:40:54.360000</div></div>')[0];
popup_54c7a07e2e0240a1b32c96caedefe134.setContent(html_0df8e855ef4f4ac595bacc72b4806185);
marker_2984a48487594a20b0498c4de480641d.bindPopup(popup_54c7a07e2e0240a1b32c96caedefe134);
var marker_859fb5588d4e4d5c9970cc5fcdf1b64f = L.marker(
[35.9533,-97.3969],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_be26a563dd0b4802ba06a4982799694d = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_859fb5588d4e4d5c9970cc5fcdf1b64f.setIcon(icon_be26a563dd0b4802ba06a4982799694d);
var popup_40bfd4685cb640499cf5b72f5a82d516 = L.popup({maxWidth: '300'});
var html_3d5c580149ee43318f59bd31f03660ff = $('<div id="html_3d5c580149ee43318f59bd31f03660ff" style="width: 100.0%; height: 100.0%;"><div style="background: red;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004as8> <h4>M 3.1 - 8km NNE of Guthrie, Oklahoma</h4> </a>Magnitude : 3.1 ml <br>Depth : 6.886 <br>Latitude : 35.9533 <br>Longitude : -97.3969 <br>Date Time : 2016-01-01 22:40:26.600000</div></div>')[0];
popup_40bfd4685cb640499cf5b72f5a82d516.setContent(html_3d5c580149ee43318f59bd31f03660ff);
marker_859fb5588d4e4d5c9970cc5fcdf1b64f.bindPopup(popup_40bfd4685cb640499cf5b72f5a82d516);
var marker_f09f60963eec4d40a71f6de655292662 = L.marker(
[36.1483333,-117.9835],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_4688a963e3bc40de9e61484a3fe3cca2 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f09f60963eec4d40a71f6de655292662.setIcon(icon_4688a963e3bc40de9e61484a3fe3cca2);
var popup_55db56bd1f184c9b93b1450499a6ab3d = L.popup({maxWidth: '300'});
var html_e3073d907d514c63a18838ed55dcedd5 = $('<div id="html_e3073d907d514c63a18838ed55dcedd5" style="width: 100.0%; height: 100.0%;"><div style="background: orange;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/ci37509480> <h4>M 2.5 - 12km NNW of Coso Junction, CA</h4> </a>Magnitude : 2.45 ml <br>Depth : 1.35 <br>Latitude : 36.1483333 <br>Longitude : -117.9835 <br>Date Time : 2016-01-01 22:39:13.790000</div></div>')[0];
popup_55db56bd1f184c9b93b1450499a6ab3d.setContent(html_e3073d907d514c63a18838ed55dcedd5);
marker_f09f60963eec4d40a71f6de655292662.bindPopup(popup_55db56bd1f184c9b93b1450499a6ab3d);
var marker_fc07cf7e794d4d0ebc5dea94cc4b03e6 = L.marker(
[55.7628,-157.9431],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_c7f4788f54114f5c9c457903bed131c3 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_fc07cf7e794d4d0ebc5dea94cc4b03e6.setIcon(icon_c7f4788f54114f5c9c457903bed131c3);
var popup_ad5ddba8ed134d3caae00a8b820addb0 = L.popup({maxWidth: '300'});
var html_a5d8adbfc1924661af36ab036feb2a69 = $('<div id="html_a5d8adbfc1924661af36ab036feb2a69" style="width: 100.0%; height: 100.0%;"><div style="background: red;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004bn0> <h4>M 4.0 - 74km SE of Chignik Lake, Alaska</h4> </a>Magnitude : 4.0 mb <br>Depth : 52.71 <br>Latitude : 55.7628 <br>Longitude : -157.9431 <br>Date Time : 2016-01-01 22:36:52.220000</div></div>')[0];
popup_ad5ddba8ed134d3caae00a8b820addb0.setContent(html_a5d8adbfc1924661af36ab036feb2a69);
marker_fc07cf7e794d4d0ebc5dea94cc4b03e6.bindPopup(popup_ad5ddba8ed134d3caae00a8b820addb0);
var marker_0893e4146cef4d3394db8a8a5831f1d5 = L.marker(
[38.287,-118.3768],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_99bc59ea282b436bb19eed9131891c00 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0893e4146cef4d3394db8a8a5831f1d5.setIcon(icon_99bc59ea282b436bb19eed9131891c00);
var popup_b827de5eca2742048000071131f8497d = L.popup({maxWidth: '300'});
var html_09498c9def3243f69eb4062a1e426711 = $('<div id="html_09498c9def3243f69eb4062a1e426711" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nn00525078> <h4>M 0.3 - 34km SE of Hawthorne, Nevada</h4> </a>Magnitude : 0.3 ml <br>Depth : 7.8 <br>Latitude : 38.287 <br>Longitude : -118.3768 <br>Date Time : 2016-01-01 22:36:13.066000</div></div>')[0];
popup_b827de5eca2742048000071131f8497d.setContent(html_09498c9def3243f69eb4062a1e426711);
marker_0893e4146cef4d3394db8a8a5831f1d5.bindPopup(popup_b827de5eca2742048000071131f8497d);
var marker_a42d8004976f4f1a96b96f946d55bfcb = L.marker(
[63.0651,-149.076],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_2800300311aa451c9ee83ca5924e6c5b = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a42d8004976f4f1a96b96f946d55bfcb.setIcon(icon_2800300311aa451c9ee83ca5924e6c5b);
var popup_b7351b0dc9cf454f84086484adcf42cb = L.popup({maxWidth: '300'});
var html_86628ca5613346339bd90cea0691b034 = $('<div id="html_86628ca5613346339bd90cea0691b034" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/ak12382599> <h4>M 1.4 - 36km S of Cantwell, Alaska</h4> </a>Magnitude : 1.4 ml <br>Depth : 73.8 <br>Latitude : 63.0651 <br>Longitude : -149.076 <br>Date Time : 2016-01-01 22:29:54</div></div>')[0];
popup_b7351b0dc9cf454f84086484adcf42cb.setContent(html_86628ca5613346339bd90cea0691b034);
marker_a42d8004976f4f1a96b96f946d55bfcb.bindPopup(popup_b7351b0dc9cf454f84086484adcf42cb);
var marker_09f2322e1b744390a341b8d3b1964d5b = L.marker(
[40.731,-112.0581667],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_d8ab34912e984fa3bb6cfdec823e44f6 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_09f2322e1b744390a341b8d3b1964d5b.setIcon(icon_d8ab34912e984fa3bb6cfdec823e44f6);
var popup_1d5dcd8e26f848eeb60e4caacf4746b4 = L.popup({maxWidth: '300'});
var html_fffa1e79473045bfb443e1f2ae07b214 = $('<div id="html_fffa1e79473045bfb443e1f2ae07b214" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/uu60134752> <h4>M 0.6 - 4km ENE of Magna, Utah</h4> </a>Magnitude : 0.58 md <br>Depth : 0.12 <br>Latitude : 40.731 <br>Longitude : -112.0581667 <br>Date Time : 2016-01-01 22:27:51.270000</div></div>')[0];
popup_1d5dcd8e26f848eeb60e4caacf4746b4.setContent(html_fffa1e79473045bfb443e1f2ae07b214);
marker_09f2322e1b744390a341b8d3b1964d5b.bindPopup(popup_1d5dcd8e26f848eeb60e4caacf4746b4);
var marker_d7b0d2a4ce2e4305a42662dc3095b63c = L.marker(
[37.7226667,-121.981],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_3ccf937811144b8093e8bbd6c588cfb3 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d7b0d2a4ce2e4305a42662dc3095b63c.setIcon(icon_3ccf937811144b8093e8bbd6c588cfb3);
var popup_f1c0ab5ac8694240ae90d4216b8894b8 = L.popup({maxWidth: '300'});
var html_8b72236193bc49149b77915f8c906839 = $('<div id="html_8b72236193bc49149b77915f8c906839" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nc72572440> <h4>M 1.6 - 4km WNW of Dublin, California</h4> </a>Magnitude : 1.58 md <br>Depth : 8.94 <br>Latitude : 37.7226667 <br>Longitude : -121.981 <br>Date Time : 2016-01-01 22:19:13.580000</div></div>')[0];
popup_f1c0ab5ac8694240ae90d4216b8894b8.setContent(html_8b72236193bc49149b77915f8c906839);
marker_d7b0d2a4ce2e4305a42662dc3095b63c.bindPopup(popup_f1c0ab5ac8694240ae90d4216b8894b8);
var marker_f5ce7d1be18049d48912fcc7780804e1 = L.marker(
[46.0135,-111.4076667],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_835515fa2b2448c8b9c36a9e8be6c948 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f5ce7d1be18049d48912fcc7780804e1.setIcon(icon_835515fa2b2448c8b9c36a9e8be6c948);
var popup_377c6566534e4544ac15c943e121b98b = L.popup({maxWidth: '300'});
var html_9e573a2c741d49a5b4a7cb2525527830 = $('<div id="html_9e573a2c741d49a5b4a7cb2525527830" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/mb80118459> <h4>M 1.0 - 17km NE of Three Forks, Montana</h4> </a>Magnitude : 0.95 ml <br>Depth : 8.16 <br>Latitude : 46.0135 <br>Longitude : -111.4076667 <br>Date Time : 2016-01-01 22:17:16.760000</div></div>')[0];
popup_377c6566534e4544ac15c943e121b98b.setContent(html_9e573a2c741d49a5b4a7cb2525527830);
marker_f5ce7d1be18049d48912fcc7780804e1.bindPopup(popup_377c6566534e4544ac15c943e121b98b);
var marker_6e2db1cbae114eb1b16ba58be776d981 = L.marker(
[60.611,-141.2047],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_09d572d688cd48949fd54733464ba660 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6e2db1cbae114eb1b16ba58be776d981.setIcon(icon_09d572d688cd48949fd54733464ba660);
var popup_95e3f00d0e7f49419c8bbfe256c3e39c = L.popup({maxWidth: '300'});
var html_7e00daf05d7449528d2ccea6ca97b325 = $('<div id="html_7e00daf05d7449528d2ccea6ca97b325" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/ak12382576> <h4>M 1.2 - 90km NE of Cape Yakataga, Alaska</h4> </a>Magnitude : 1.2 ml <br>Depth : 8.0 <br>Latitude : 60.611 <br>Longitude : -141.2047 <br>Date Time : 2016-01-01 22:12:01</div></div>')[0];
popup_95e3f00d0e7f49419c8bbfe256c3e39c.setContent(html_7e00daf05d7449528d2ccea6ca97b325);
marker_6e2db1cbae114eb1b16ba58be776d981.bindPopup(popup_95e3f00d0e7f49419c8bbfe256c3e39c);
var marker_cb55ea8a49724c409f0b917c892ce587 = L.marker(
[46.7818333,-114.1701667],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_13f7a1ad46b1452295172aec291c6658 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_cb55ea8a49724c409f0b917c892ce587.setIcon(icon_13f7a1ad46b1452295172aec291c6658);
var popup_8c90112154ca4589bc1e917020689e0c = L.popup({maxWidth: '300'});
var html_e73dfba7a8cf417e99a8ce17b007864f = $('<div id="html_e73dfba7a8cf417e99a8ce17b007864f" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/mb80118529> <h4>M 0.6 - 7km WNW of Lolo, Montana</h4> </a>Magnitude : 0.63 md <br>Depth : 2.17 <br>Latitude : 46.7818333 <br>Longitude : -114.1701667 <br>Date Time : 2016-01-01 22:11:50.340000</div></div>')[0];
popup_8c90112154ca4589bc1e917020689e0c.setContent(html_e73dfba7a8cf417e99a8ce17b007864f);
marker_cb55ea8a49724c409f0b917c892ce587.bindPopup(popup_8c90112154ca4589bc1e917020689e0c);
var marker_8f385f473f184349abdef081de9f7b48 = L.marker(
[35.6661,-97.3992],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_1276c0b5b48141a489f85baf4d32c8d8 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8f385f473f184349abdef081de9f7b48.setIcon(icon_1276c0b5b48141a489f85baf4d32c8d8);
var popup_9169bb3d7ecf4d389ef827b98f82fe14 = L.popup({maxWidth: '300'});
var html_f2d612674a3949e6a6ef10c6792091d5 = $('<div id="html_f2d612674a3949e6a6ef10c6792091d5" style="width: 100.0%; height: 100.0%;"><div style="background: red;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004as5> <h4>M 3.0 - 7km ENE of Edmond, Oklahoma</h4> </a>Magnitude : 3.0 ml <br>Depth : 6.696 <br>Latitude : 35.6661 <br>Longitude : -97.3992 <br>Date Time : 2016-01-01 22:08:04.700000</div></div>')[0];
popup_9169bb3d7ecf4d389ef827b98f82fe14.setContent(html_f2d612674a3949e6a6ef10c6792091d5);
marker_8f385f473f184349abdef081de9f7b48.bindPopup(popup_9169bb3d7ecf4d389ef827b98f82fe14);
var marker_62d09536ab0442468d2cef0798460ca7 = L.marker(
[61.3331,-151.3169],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_1c2ef055ac054732be553e8f931ec779 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_62d09536ab0442468d2cef0798460ca7.setIcon(icon_1c2ef055ac054732be553e8f931ec779);
var popup_c5a6a89b971b4ecd8bfc1389df26044d = L.popup({maxWidth: '300'});
var html_4963f5155cb544c2ace004c2d0936d07 = $('<div id="html_4963f5155cb544c2ace004c2d0936d07" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/ak12439428> <h4>M 1.7 - 71km N of Nikiski, Alaska</h4> </a>Magnitude : 1.7 ml <br>Depth : 67.2 <br>Latitude : 61.3331 <br>Longitude : -151.3169 <br>Date Time : 2016-01-01 21:59:35</div></div>')[0];
popup_c5a6a89b971b4ecd8bfc1389df26044d.setContent(html_4963f5155cb544c2ace004c2d0936d07);
marker_62d09536ab0442468d2cef0798460ca7.bindPopup(popup_c5a6a89b971b4ecd8bfc1389df26044d);
var marker_b56e3b2ed8084a219a818b216f204504 = L.marker(
[-9.0125,158.3119],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_e62ae3770cad41518c6b0d06b78990c6 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'darkred',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b56e3b2ed8084a219a818b216f204504.setIcon(icon_e62ae3770cad41518c6b0d06b78990c6);
var popup_200b614eb284485f89722ad9001e2505 = L.popup({maxWidth: '300'});
var html_281af9d19eb848c59582f75a97c2ceb1 = $('<div id="html_281af9d19eb848c59582f75a97c2ceb1" style="width: 100.0%; height: 100.0%;"><div style="background: darkred;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/us10004as0> <h4>M 4.9 - 132km SW of Dadali, Solomon Islands</h4> </a>Magnitude : 4.9 mb <br>Depth : 14.82 <br>Latitude : -9.0125 <br>Longitude : 158.3119 <br>Date Time : 2016-01-01 21:49:40.090000</div></div>')[0];
popup_200b614eb284485f89722ad9001e2505.setContent(html_281af9d19eb848c59582f75a97c2ceb1);
marker_b56e3b2ed8084a219a818b216f204504.bindPopup(popup_200b614eb284485f89722ad9001e2505);
var marker_6e9f58dd710d42128e97da34777406c2 = L.marker(
[19.1611,-66.408],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_1e32351d6be14b04856bac5484416d3f = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6e9f58dd710d42128e97da34777406c2.setIcon(icon_1e32351d6be14b04856bac5484416d3f);
var popup_2152012ea90649cc9be235410a50b0eb = L.popup({maxWidth: '300'});
var html_ff3e13c8969445619d651cf2d64380ee = $('<div id="html_ff3e13c8969445619d651cf2d64380ee" style="width: 100.0%; height: 100.0%;"><div style="background: orange;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/pr16001006> <h4>M 2.8 - 77km N of Brenas, Puerto Rico</h4> </a>Magnitude : 2.8 Md <br>Depth : 22.0 <br>Latitude : 19.1611 <br>Longitude : -66.408 <br>Date Time : 2016-01-01 21:49:18</div></div>')[0];
popup_2152012ea90649cc9be235410a50b0eb.setContent(html_ff3e13c8969445619d651cf2d64380ee);
marker_6e9f58dd710d42128e97da34777406c2.bindPopup(popup_2152012ea90649cc9be235410a50b0eb);
var marker_542b78b2e3ad40c5b6ec49dbd7c399a4 = L.marker(
[38.8223343,-122.8264999],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_07348a0b2aeb467bba61eeb2b7fd005d = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_542b78b2e3ad40c5b6ec49dbd7c399a4.setIcon(icon_07348a0b2aeb467bba61eeb2b7fd005d);
var popup_92134056b2f74c528b183c29f1721df3 = L.popup({maxWidth: '300'});
var html_e529f572685c4b8da5a9b3eb16916719 = $('<div id="html_e529f572685c4b8da5a9b3eb16916719" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nc72572435> <h4>M 0.9 - 7km NW of The Geysers, California</h4> </a>Magnitude : 0.86 md <br>Depth : 2.27 <br>Latitude : 38.8223343 <br>Longitude : -122.8264999 <br>Date Time : 2016-01-01 21:49:07.330000</div></div>')[0];
popup_92134056b2f74c528b183c29f1721df3.setContent(html_e529f572685c4b8da5a9b3eb16916719);
marker_542b78b2e3ad40c5b6ec49dbd7c399a4.bindPopup(popup_92134056b2f74c528b183c29f1721df3);
var marker_4877bfb509c145f0bb9dd2daf2c1d9d0 = L.marker(
[41.8511,-119.6133],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_c52a782a757b430cba9c313f8df883af);
var icon_9a0c6f864f264319a0676052b6b34b4d = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_4877bfb509c145f0bb9dd2daf2c1d9d0.setIcon(icon_9a0c6f864f264319a0676052b6b34b4d);
var popup_7f872ff1dd6742679b6771309b0280f4 = L.popup({maxWidth: '300'});
var html_4f4e38448df84a85bf69902612c1b90e = $('<div id="html_4f4e38448df84a85bf69902612c1b90e" style="width: 100.0%; height: 100.0%;"><div style="background: green;"><a target="_blank" href=https://earthquake.usgs.gov/earthquakes/eventpage/nn00524999> <h4>M 1.8 - 71km ESE of Lakeview, Oregon</h4> </a>Magnitude : 1.8 ml <br>Depth : 8.6 <br>Latitude : 41.8511 <br>Longitude : -119.6133 <br>Date Time : 2016-01-01 21:43:58.512000</div></div>')[0];
popup_7f872ff1dd6742679b6771309b0280f4.setContent(html_4f4e38448df84a85bf69902612c1b90e);
marker_4877bfb509c145f0bb9dd2daf2c1d9d0.bindPopup(popup_7f872ff1dd6742679b6771309b0280f4);
var marker_6190167e438140068470f013ad704c77 = L.marker(
[61.6528,-150.0509],