-
Notifications
You must be signed in to change notification settings - Fork 0
/
1976_gen.html
1496 lines (1052 loc) · 84.6 KB
/
1976_gen.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>
<html>
<head>
<title>1976</title>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="http://pvanheus.github.io/1976/cross_marker.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" integrity="sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ==" crossorigin=""/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js" integrity="sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg==" crossorigin=""></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col s8 offset-s2">
<center>
<h4>In memory of 1976</h4>
<p>June 16 1976 marks the start of the 1976 youth uprising against Apartheid in South Africa. Most closely associated
with the school students march in Soweto and the murder of Hector Pieterson, the revolt spread across the country
and well past June 1976. Along with the revolt came the deaths, most often of those shot by police. The
South African History Online website has tried to collect a
<a href="http://www.sahistory.org.za/topic/june-16-soweto-youth-uprising">list</a> of the "casaulties of
1976". I have taken that list, done a little cleanup (code is <a href="https://github.com/pvanheus/1976">here</a>)
and produced the map below.</p>
<center><div id="mapid" style="width: 800px; height: 700px;"></div>
<script>
var mymap = L.map('mapid').setView([-28.8097176,24.6074293], 6);
var cross_icon = L.icon({
iconUrl: 'cross_marker.png',
iconSize: [15, 25],
iconAnchor: [7, 12],
popupAnchor: [0, -6]
});
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
maxZoom: 18,
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
'Imagery © <a href="http://mapbox.com">Mapbox</a>',
id: 'mapbox.streets'
}).addTo(mymap);
L.marker([-33.9367988, 18.4023586], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sandra Joyce Adams, 15</b><br /></b><br />16.9.76<br />Kew Town<br />Shot in front of head (ricochet) on 3rd floor balcony");
L.marker([-33.9922222, 18.5330556], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Noel John Adriaanse, 13</b><br /></b><br />2.9.76<br />Hanover Park<br />Shot through left side of head");
L.marker([-33.782221, 20.121103], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Pieter Africa, 24</b><br /></b><br />11.9.76<br />Montagu<br />White Supply. Details of death under investigation");
L.marker([-33.9105182, 18.5691093], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Bazil Albern, 16</b><br /></b><br />9.9.76<br />Elsies River<br />Shot to side of abdomen");
L.marker([-33.9211111, 18.6063889], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Abduraghman Allie</b><br /></b><br />7.9.76<br />Ravensmead<br />Shot in chest from front");
L.marker([-33.9897222, 18.5544444], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Christopher Appolis, 16</b><br /></b><br />10.9.76<br />Manenberg<br />Shot in head from front, Jordaan Road");
L.marker([-33.9822813, 18.5795783205246], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Victor L. August</b><br /></b><br />31.12.76<br />Gugulethu<br />Reported missing during December disturbances");
L.marker([-33.9869444, 18.5847222], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Golden Bakubaku</b><br /></b><br />26.12.76<br />Nyanga<br />Killed by migrant workers");
L.marker([-34.0451287, 18.5032529], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gary Sandy Balnardo, 19</b><br /></b><br />16.9.76<br />Grassy Park<br />Shot through buttock and chest from front, at Head Road.");
L.marker([-33.9515986, 18.5527976443345], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Isaac Barnes, 16</b><br /></b><br />25.8.76<br />Bonteheuwel<br />Shot in chest from front");
L.marker([-33.97673285004713, 18.576396907700975], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sydney Barnes, 32</b><br /></b><br />26.8.76<br />Gugulethu<br />Beaten to death by group of migrant workers");
L.marker([-26.2227778, 27.89], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> James Barron</b><br /></b><br />26.12.76<br />Soweto<br />Shot through the head");
L.marker([-34.15431655, 22.0608422192112], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Isaac Bezuidenhout</b><br /></b><br />14.9.76<br />Mosselbay<br />Burried");
L.marker([-33.9861258826373, 18.592749315090703], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Michael Bota</b><br /></b><br />26.12.76<br />Nyanga<br />Shot dead");
L.marker([-33.980781387038704, 18.578268044975136], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> William Botha</b><br /></b><br />26.12.76<br />Nyanga<br />Killed by migrant workers");
L.marker([-34.0541667, 18.4763889], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Neville Botha, 20</b><br /></b><br />8.9.76<br />Retreat<br />Shot in stomach from front");
L.marker([-34.0052778, 18.5702778], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lawrence Buba, 14</b><br /></b><br />9.9.76<br />Philippi<br />Shot in chest from front");
L.marker([-26.224264094475597, 27.89842287664612], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Leonard Buthelezi, 39</b><br /></b><br />4.8.76<br />Soweto<br />Gunshot wounds to the head and body");
L.marker([-33.98901038751475, 18.53322676788124], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gasant Carolissen, 21</b><br /></b><br />2.9.76<br />Hanover Park<br />Shot in chest from front");
L.marker([-33.934444, 18.869167], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ronald C. Carolissen, 22</b><br /></b><br />9.9.76<br />Stellenbosch<br />");
L.marker([-33.98573210568587, 18.556304625692714], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Faried Cook, 16</b><br /></b><br />9.9.76<br />Manenberg<br />Shot in neck from behind");
L.marker([-33.955363051599576, 18.547913080611238], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Rodney Cooke, 24</b><br /></b><br />25.8.76<br />Bonteheuwel<br />Shot in chest from front");
L.marker([-34.05506207216018, 18.473966014482794], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Bhanudey Dajee, 37</b><br /></b><br />8.9.76<br />Retreat<br />Shot in lungs and heart");
L.marker([-33.919688855486534, 18.563071204350756], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Patrick J Daniels, 24</b><br /></b><br />9.9.76<br />Elsies River<br />Shot in back of head");
L.marker([-34.050914136933024, 18.478170574925226], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Daniels, 35</b><br /></b><br />8.9.76<br />Retreat<br />Shot in left side of chest");
L.marker([-33.9113889, 18.8555556], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Kammips Daniels, 33</b><br /></b><br />7.9.76<br />Cloetesville<br />Shot dead");
L.marker([-33.98693739451127, 18.545385497710047], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Davids, 16</b><br /></b><br />9.9.76<br />Manenberg<br />Shot in head from behind, in Thomas Avenue");
L.marker([-33.9666667, 18.505], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mogamat Rushaad Davids, 24</b><br /></b><br />27.12.76<br />Athlone<br />Shot in back");
L.marker([-33.9455556, 18.53], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Dennis Bantu Dlanza, 22</b><br /></b><br />27.12.76<br />Langa<br />Shot in Langa");
L.marker([-33.97403169057563, 18.584153431787293], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> T.S.B. Dondi</b><br /></b><br />16.9.76<br />Gugulethu<br />Shot");
L.marker([-33.741667, 18.975], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Yvonne Dube, 45</b><br /></b><br />9.9.76<br />Paarl East<br />Inquest revealed that she died after seven pellets from a shotgun had been fired at her. The magistrate found that no body could be held responsible for her death. She had been among a group of people throwing stones.");
L.marker([-25.3544444, 27.0786111], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Elifas Dithipe</b><br /></b><br />31.12.76<br />Kagiso<br />");
L.marker([-26.23014399848947, 27.888833743816267], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Baby Dladla, 28</b><br /></b><br />14.6.76<br />Soweto<br />Shot through the head");
L.marker([-26.222934041056625, 27.897587200135384], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Emmanuel Dlamini</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.2219755085034, 27.897951882349915], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Melville Leonard Edelstein</b><br /></b><br />16.6.76<br />Soweto<br />");
L.marker([-26.215198432525753, 27.887168414319937], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Johannes Hendrik Eesterhuizen</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.996453522494534, 18.559315780261255], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Charles Elliot, 16</b><br /></b><br />9.9.76<br />Manenberg<br />Shot in abdomen from font");
L.marker([-33.94644121537954, 18.558346897831434], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Dawood Essop, 30</b><br /></b><br />25.8.76<br />Bonteheuwel<br />Shot in back");
L.marker([-33.99547073002958, 18.54257504618811], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Herry A.J.D Ferguson, 30</b><br /></b><br />2.9.76<br />Hanover Park<br />Shot through lungs from behind");
L.marker([-34.056273036380254, 18.473657531198555], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Alfred A. Finch, 15</b><br /></b><br />9.9.76<br />Retreat<br />Shot in right side of chest from front");
L.marker([-33.9231766656909, 18.60186802234567], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Edward Fish, 25</b><br /></b><br />7.9.76<br />Ravensmead<br />Shot in right side of chest and abdomen from front");
L.marker([-33.95122417672084, 18.524973409011864], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ivy Fisher, 32</b><br /></b><br />12.8.76<br />Langa<br />Shot in right side of head");
L.marker([-26.223360421136316, 27.896306781742233], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Enoch Follie</b><br /></b><br />18.6.76<br />Soweto<br />Shot above the heart");
L.marker([-26.104444, 28.098889], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> R.W. Garnie</b><br /></b><br />26.12.76<br />Alexandra<br />Shot in right shoulder");
L.marker([-33.98148152789861, 18.57368744865379], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Abel Daniso Gcwabe</b><br /></b><br />1.11.76<br />Gugulethu<br />Shot dead");
L.marker([-33.988865919946434, 18.585013924650433], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Fetras Genu, 18</b><br /></b><br />12.8.76<br />Gugulethu<br />Shot in chest from front");
L.marker([-33.978248417111054, 18.587732818648746], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Christopher Gobile, 26</b><br /></b><br />21.8.76<br />Gugulethu<br />Shot in abdomen from front");
L.marker([-26.228900821668784, 27.895990847569806], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jeffery Godwe</b><br /></b><br />18.6.76<br />Soweto<br />");
L.marker([-33.95545809676192, 18.52778331265279], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sidney Z. Gonxeka, 18</b><br /></b><br />28.12.76<br />Langa<br />Shot dead");
L.marker([-26.2191462723082, 27.894274380525715], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Petrus Gule, 15</b><br /></b><br />26.8.76<br />Soweto<br />Gunshot wound of head");
L.marker([-26.22908459176049, 27.898745227585056], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jumba Gumata, 26</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.989909832179066, 18.57181688996108], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mhlangabezi E Gushamn, 28</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in head from front");
L.marker([-33.97826536079007, 18.57371195045977], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nelson Guwa, 48</b><br /></b><br />26.12.76<br />Gugulethu<br />Axed to death by migrant workers");
L.marker([-33.9630556, 18.5294444], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ronald Harris, 25</b><br /></b><br />16.9.76<br />Silvertown<br />Shot in chest from front");
L.marker([-33.99029133471435, 18.570836307226724], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Stanley Mlamli Hlakula, 26</b><br /></b><br />27.12.76<br />Gugulethu<br />Shot dead");
L.marker([-33.7286094, 18.9802693], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Spasiena Hoogaardt, 15</b><br /></b><br />9.9.76<br />Huguenot, Paarl<br />Shotss");
L.marker([-26.223661708563064, 27.88525330400841], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Joyce Hlatshwayo</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.215960886590413, 27.88327436277982], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Johannes Hlongwane, 43</b><br /></b><br />12.9.76<br />Soweto<br />");
L.marker([-26.217280136257642, 27.881350062412537], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Petros Hlongwane, 29</b><br /></b><br />25.7.76<br />Soweto<br />");
L.marker([-26.105764196371222, 28.10744983338139], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> N.C. Hlokwane</b><br /></b><br />26.12.76<br />Alexandra<br />Crushed by bus");
L.marker([-34.062847095337744, 18.47891678913472], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Colin Isaacs, 31</b><br /></b><br />9.9.76<br />Retreat<br />Shot in neck from behind");
L.marker([-33.98001733355072, 18.55567330950754], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Isaacs, 15</b><br /></b><br />9.9.76<br />Manenberg<br />Shot");
L.marker([-33.932546, 18.435048], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Shaheed Jacobs, 15</b><br /></b><br />3.9.76<br />District Six<br />Shot through side of neck and chest at corner of Sackville and Vincent Streets, Cape Town.");
L.marker([-33.9105182, 18.5691093], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mervyn Jacobs, 16</b><br /></b><br />8.9.76<br />Elsies' River<br />Shot in back");
L.marker([-33.989343718533476, 18.55617501543266], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Jacobs, 15</b><br /></b><br />9.9.76<br />Manenberg<br />Shot in arm and chest from left at Green Dolphin Bottle Store, Jordaan Road.");
L.marker([-33.988830360663606, 18.58880469892992], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Government Jelems</b><br /></b><br />27.12.76<br />Nyanga<br />Shot and axed to death");
L.marker([-33.98979014181026, 18.561972117872514], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Erol Johnson</b><br /></b><br />4.2.77<br />Manenberg<br />Shot in stomach");
L.marker([-33.99473866498233, 18.587702432195538], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lawrence Jonas, 26</b><br /></b><br />26.12.76<br />Nyanga<br />Killed by migrant workers");
L.marker([-33.992640655852895, 18.55906890625715], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nazeem Kahn</b><br /></b><br />16.9.76<br />Manenberg<br />Shot in chest and abdomen from an angle");
L.marker([-26.227598469852502, 27.883391146091974], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Samson Fantu Kalakahla, 26</b><br /></b><br />25.8.76<br />Soweto<br />");
L.marker([-26.225969190688225, 27.894243886100533], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> George Kalane, 15</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.98948399662216, 18.57805079486997], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Andries Kamesi, 25</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in head from front");
L.marker([-33.91427146028778, 18.614050190661427], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Christiaan B. Kamfer, 16</b><br /></b><br />7.9.76<br />Ravensmead<br />Shot in chest from front");
L.marker([-33.99404694456025, 18.584922024324346], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Richard Khalipha, 4months</b><br /></b><br />15.1.77<br />Nyanga<br />Cause of death unknown");
L.marker([-33.99418482838199, 18.544965694642112], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Naziem Khan, 15</b><br /></b><br />16.9.76<br />Manenberg<br />");
L.marker([-33.9105182, 18.5691093], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Amgeline Kleinschmidt, 31</b><br /></b><br />8.9.76<br />Elsis' River<br />Shot in back of head");
L.marker([-33.97906818404356, 18.576180873881928], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Brian Komani, 27</b><br /></b><br />26.12.76<br />Nyanga<br />Shot dead");
L.marker([-33.99164945639198, 18.576584883949394], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Joseph Kumalo, 22</b><br /></b><br />3.9.76<br />Gugulethu<br />Shot in abdomen from front");
L.marker([-33.97264692868316, 18.58829146818549], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Harry Kwisomba, 30</b><br /></b><br />26.1276<br />Gugulethu<br />Shot to death");
L.marker([-25.715833, 28.380833], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Andries Kekane</b><br /></b><br />311276<br />Mamelodi<br />");
L.marker([-26.21383958491648, 27.88014001066226], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Shadrack Kekane</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.219196624169207, 27.889408565926704], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Marshall Keokame</b><br /></b><br />16.6.76<br />Soweto<br />");
L.marker([-26.220043000213497, 27.8991738369044], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Philemon Kgampe</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.21392663628743, 27.88889848079515], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Edward Kgapule</b><br /></b><br />26.12.77<br />Soweto<br />");
L.marker([-26.215046716681897, 27.887416940327864], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gustov Kgoadi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.1433497, 28.4215221804455], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Linda Kgokong</b><br /></b><br />31.12.76<br />Daveyton<br />");
L.marker([-26.217201236114644, 27.884505890518202], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ariel 'Pro' Kgongoana</b><br /></b><br />16.6.76<br />Soweto<br />");
L.marker([-26.213788557791627, 27.88277669772435], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Herbert Kgupisi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22964388634025, 27.88523298102137], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sydney Kabelo Khaje, 47</b><br /></b><br />26.12.76<br />Soweto<br />Shot");
L.marker([-26.223297213718123, 27.88168306905256], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Godfrey Khambule, 12</b><br /></b><br />24.8.76<br />Soweto<br />Gun shot wounds when police fired at crowd");
L.marker([-25.711185514927752, 28.384569688071515], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Khoza</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.221695951220333, 27.889730006090502], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Columbus Khumalo</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.231233188701736, 27.892566411338507], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Daniel Khumalo, 24</b><br /></b><br />19.6.76<br />Soweto<br />Multiple injuries to body.");
L.marker([-26.217048319057266, 27.886619614832224], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nehemiah M. Khumalo, 24</b><br /></b><br />21.6.76<br />Soweto<br />Stabbed above the heart.");
L.marker([-26.21449303365168, 27.887569763933605], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Doctor Koalana</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.212902300849326, 27.890123830414687], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Willy Koalana</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.231219114169143, 27.89783349505993], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Kabelo Kobedi</b><br /></b><br />25.6.76<br />Soweto<br />");
L.marker([-25.717475233337552, 28.388727814155153], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> David Kolonga</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.226776420679453, 27.894508112090307], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Johannes Kubeka, 24</b><br /></b><br />16.7.76<br />Soweto<br />Gunshot wounds to left leg. Died of haemorrhage");
L.marker([-26.227498925797644, 27.89176506200956], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Hilton Khubeka, 19</b><br /></b><br />17.6.76<br />Soweto<br />");
L.marker([-26.225387509461097, 27.894993735724803], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Robert Khubeka, 24</b><br /></b><br />26.12.76<br />Soweto<br />Stab wounds");
L.marker([-26.23120706164562, 27.880510486062466], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Zabulon Khubeka, 47</b><br /></b><br />22.8.76<br />Soweto<br />");
L.marker([-26.212805980231234, 27.893568434471636], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Zolile Kumalo</b><br /></b><br />Soweto<br />");
L.marker([-26.218615313372094, 27.88855240197005], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Edward Kunene, 42</b><br /></b><br />18.6.76<br />Soweto<br />Stabbed twice on left side of chest");
L.marker([-26.215481992874576, 27.894237492120304], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gunston Kwadi, 32</b><br /></b><br />26.8.76<br />Soweto<br />Gunshot wounds to head");
L.marker([-26.22565574433777, 27.8901120364303], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gregory Kwinana, 38</b><br /></b><br />17.6.76<br />Soweto<br />");
L.marker([-26.2248790232502, 27.899309027210116], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Abiel Lebelo, 20</b><br /></b><br />4.8.76<br />Soweto<br />Shot and teargassed");
L.marker([-26.220920999762, 27.890343092025617], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Leburu, 23</b><br /></b><br />18.6.76<br />Soweto<br />");
L.marker([-26.216952340229902, 27.899586715112463], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jacob Ledwaba</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-34.05108898680647, 18.48214103539604], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ralph Lee, 34</b><br /></b><br />8.9.76<br />Retreat<br />Shot in neck from front");
L.marker([-26.21702338108505, 27.89096656424623], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Patrick Lengwali</b><br /></b><br />11.1.77<br />Soweto<br />");
L.marker([-26.213857836789437, 27.895919528191115], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Patrick Themba Lengwathi</b><br /></b><br />16.6.76<br />Soweto<br />Shot");
L.marker([-26.228807061027098, 27.899269118459852], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Hermina Leroke</b><br /></b><br />26.12.77<br />Soweto<br />");
L.marker([-33.94796320233338, 18.524597350494624], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Tutu John Lesele, 45</b><br /></b><br />11.8.76<br />Langa<br />Shot in calf, buttock and chest from behind");
L.marker([-26.213017506555257, 27.891346676863144], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> J. Lesumi</b><br /></b><br />26.12.76<br />Soweto<br />Assaulted by hostel inmates with choppers");
L.marker([-26.220101951803787, 27.880542678138166], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> J. Letlaku</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.213608248383203, 27.88031961586574], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Dominic Letleka, 4</b><br /></b><br />18.6.76<br />Soweto<br />");
L.marker([-26.21391776211986, 27.899399134609332], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Peter Letsholo, 21</b><br /></b><br />25.8.76<br />Soweto<br />");
L.marker([-33.94486715103695, 18.559803357540865], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Owen Leukes, 17</b><br /></b><br />Bonteheuwel<br />Reported in official police list as a casualty not resulting from police action.");
L.marker([-33.991442057113915, 18.551040411738274], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Cyril Ivan Limba, 18</b><br /></b><br />9.9.76<br />Manenberg<br />Shot in back and small of back at Vistula Tavern Bottle Store");
L.marker([-26.221943010104912, 27.89368876122474], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Petrus King Linda, 26</b><br /></b><br />26.12.76<br />Soweto<br />Killed by gunshot.");
L.marker([-26.21406337379394, 27.888831326942334], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jan Lloyd</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.986672465929, 18.580219477867566], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Samuel Louw, 42</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in chest from front");
L.marker([-34.15914716095985, 22.061188665271732], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Cornelius Lucas</b><br /></b><br />Mosselbay<br />Died prior to September 15");
L.marker([-33.981799564419525, 18.570478161327724], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Wiseman Lutiya, 22</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in abdominal cavity");
L.marker([-26.23170514013801, 27.890745822700623], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Inspector Luphindo, 24</b><br /></b><br />2.7.76<br />Soweto<br />");
L.marker([-26.23127997620947, 27.892194096338986], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Goowill Lupiwane, 35</b><br /></b><br />18.2.77<br />Soweto<br />Fractured skull");
L.marker([-26.215635714463506, 27.89520694993544], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Reginald Luvatsha</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.214322133206945, 27.886080561930445], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Thembo Luvatsha</b><br /></b><br />26.6.76<br />Soweto<br />Bullet wounds below stomach");
L.marker([-26.223479500680554, 27.895818742875655], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Selby Mabandla, 58</b><br /></b><br />26.12.76<br />Soweto<br />Chopped on head when hostel dwellers attacked Soweto Residents");
L.marker([-26.228196431304262, 27.88373412853413], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Erick Mabaso, 18</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.224065241432715, 27.88619354743827], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mathabeni Mabaso</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.218959343374426, 27.890180118075104], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> N Mabaso</b><br /></b><br />26.12.76<br />Soweto<br />Shot");
L.marker([-26.228720579107005, 27.892966914686028], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Peter Mabena</b><br /></b><br />26.12.76<br />Soweto<br />Stabbed");
L.marker([-26.22496957207549, 27.889847168001353], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Bennet Maboya</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.213995782966236, 27.88390776240436], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Bernard Maboya</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.225955719719046, 27.89115194908223], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Glagys Mabuku</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-25.714414287421537, 28.381172484779032], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sam Boy Mabunda</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.23145033969145, 27.889474393659995], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> B. Mabuya</b><br /></b><br />26.12.76<br />Soweto<br />Bullet wound to mouth and shoulder");
L.marker([-26.224904265562717, 27.88064939236342], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Patrick Mabuza, 24</b><br /></b><br />17.9.76<br />Soweto<br />");
L.marker([-25.725576110310165, 28.383505750178845], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Shadrack Mabuza</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.22383622175133, 27.893565211486155], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gladys Mabyka, 26</b><br /></b><br />18.2.77<br />Soweto<br />");
L.marker([-26.097684570896117, 28.09700172710363], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> P. Madibo</b><br /></b><br />26.12.76<br />Alexandra<br />Shot in left shoulder");
L.marker([-25.723126169969714, 28.387002716799472], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Daniel Madikane</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.218678387564548, 27.888097497988646], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Patrick Madzivhandla</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.226006362379245, 27.88255268499314], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Simon Maepa</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.101208313199987, 28.09523483722582], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Dane Maga</b><br /></b><br />26.12.76<br />Alexandra<br />Bullet wound");
L.marker([-26.22784667514053, 27.886344908298618], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Florence Magadani</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.224138578151354, 27.887039032444783], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Godfrey Mahapo</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.221075359980375, 27.886797864679565], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Daniel Mahasha</b><br /></b><br />26.12.77<br />Soweto<br />");
L.marker([-26.2170979640635, 27.88173323261521], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> David Mahlaba, 24</b><br /></b><br />26.12.78<br />Soweto<br />");
L.marker([-26.218531311231867, 27.880086454299118], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Pauline Mahlambi</b><br /></b><br />26.12.79<br />Soweto<br />Bullet wound on thigh.");
L.marker([-26.23187528261922, 27.889434914877278], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Raymond Mahlaza, 24</b><br /></b><br />17.6.76<br />Soweto<br />Shot in hip");
L.marker([-26.230645797912217, 27.888314299543026], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Maxwell Mahlinza, 24</b><br /></b><br />17.6.76<br />Soweto<br />Shot in hip");
L.marker([-26.22010920036607, 27.889102772133853], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> G. Mahopo</b><br /></b><br />26.12.76<br />Soweto<br />Shot");
L.marker([-26.23048839131738, 27.898692214347445], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Walter Maichetha, 15</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.215635694130892, 27.89989534735216], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Richard Mailangwe</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.223143894890804, 27.88472028065548], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Simon Maipa</b><br /></b><br />26.12.77<br />Soweto<br />");
L.marker([-33.9802206104476, 18.58243146720264], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Archibald Majambela, 23</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in chest from front");
L.marker([-34.007689315293455, 18.579768547745086], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Douglas Majamba, 20</b><br /></b><br />12.8.76<br />Philippi<br />Shot in chest from front");
L.marker([-33.9367850030644, 18.524963028462512], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Rebecca Majeka, 37</b><br /></b><br />11.8.76<br />Langa<br />Shot through neck from behind");
L.marker([-26.23070824344183, 27.89618097008721], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Daniel Majoko</b><br /></b><br />26.12.78<br />Soweto<br />");
L.marker([-26.230954376297195, 27.882541991784528], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nongoentu Majola, 28</b><br /></b><br />8.8.76<br />Soweto<br />Shot dead by Railway police");
L.marker([-26.22288917738069, 27.89611701924263], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Boy Majola</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22923654309757, 27.896833962820747], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Titus Majola, 15</b><br /></b><br />19.7.76<br />Soweto<br />");
L.marker([-33.9834468778743, 18.58224318996657], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ellen Makaluza</b><br /></b><br />26.12.76<br />Gugulethu<br />Axed to death by migrant workers");
L.marker([-33.97633843429583, 18.57895605279881], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Monica Makundayi, 5</b><br /></b><br />26.12.76<br />Gugulethu<br />Shot dead");
L.marker([-26.217400823658743, 27.887621768564244], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Washington Makate, 26</b><br /></b><br />25.8.76<br />Soweto<br />Shotgun pellet wounds to both legs. Died of haemorrhage.");
L.marker([-26.226890781099197, 27.88283929272522], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Abraham Makari, 43</b><br /></b><br />18.2.77<br />Soweto<br />Stab wound");
L.marker([-26.223375218464348, 27.898277305343047], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Washington T Makate</b><br /></b><br />26.12.76<br />Soweto<br />Shot through the neck.");
L.marker([-26.22459218567051, 27.88341206083882], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Peter Makgabane</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.230891391718615, 27.899135385524836], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> David Makgetle</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.215890079665503, 27.88038633811993], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Petrus K. Makhabane</b><br /></b><br />26.12.76<br />Soweto<br />Shot in chest and stomach");
L.marker([-26.224387302392937, 27.896581842356202], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Abraham Makhari, 33</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.228767555988966, 27.89806455608395], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Makhosi Makhotla, 41</b><br /></b><br />7.9.76<br />Soweto<br />Gunshot wounds to abdomen");
L.marker([-26.225337449997276, 27.888622598301257], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> George Malindisa, 23</b><br /></b><br />31.7.76<br />Soweto<br />");
L.marker([-33.9818640185404, 18.57421213711912], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gladwell Maneli</b><br /></b><br />2.1.77<br />Gugulethu<br />Beaten to death by group of migrant workers");
L.marker([-26.218228466437917, 27.897118256337777], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Herbert Manale</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.231764237373838, 27.894235800170076], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Victor Manganyi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.219068835386075, 27.88457414953468], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Arthur Manhayi, 24</b><br /></b><br />24.8.76<br />Soweto<br />Chopped to death, allegedly by hostel dwellers");
L.marker([-26.23255552292458, 27.890316163136845], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Benjamin Mankayi, 39</b><br /></b><br />23.8.76<br />Soweto<br />Stabbed during attack by hostel dweller.");
L.marker([-26.228591390762617, 27.888840941459808], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gideon Mankayi, 39</b><br /></b><br />24.8.76<br />Soweto<br />Cut across the head with sharp instrument");
L.marker([-26.221965506539107, 27.89163352273161], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> S. Maphalala</b><br /></b><br />27.8.76<br />Soweto<br />Shot");
L.marker([-26.22976905538288, 27.88777535567518], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Phillip March, 16</b><br /></b><br />20.6.76<br />Soweto<br />Shot thrice through the head.");
L.marker([-34.05796650931265, 18.48239105916997], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Alfred Marney, 18</b><br /></b><br />16.9.76<br />Retreat<br />Shot in small of back");
L.marker([-26.224441292819265, 27.881828777475373], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sara Maseko, 46</b><br /></b><br />17.6.76<br />Soweto<br />Fatal gunshot wounds to thighs. Died of haemorrhage");
L.marker([-26.216072251000682, 27.8905627778825], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sylvester Vusi Maseko, 21</b><br /></b><br />20.9.76<br />Soweto<br />Gunshot wounds to the head.");
L.marker([-33.97316069608462, 18.585779758434885], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nkululo Masiba, 22</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in right shoulder from behind");
L.marker([-26.231915461464887, 27.88534157611591], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Bernard Masimango</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.227589813037596, 27.89493432519149], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Themba Masuku</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.229700601720992, 27.892989626365008], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Grace Masenya</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.221003058342653, 27.890454734257112], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Johannes Mashaba, 22</b><br /></b><br />26.12.76<br />Soweto<br />Strangulation");
L.marker([-26.217247980743135, 27.88202447765571], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> F.B. Mashiane</b><br /></b><br />26.8.76<br />Soweto<br />Shot");
L.marker([-26.230319758458375, 27.89894909553513], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Morris Mashinini</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.222867417102133, 27.88829931664562], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ben Mashombo</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.219860626033704, 27.891562465915616], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Aby Masilela, 24</b><br /></b><br />26.12.76<br />Soweto<br />Multiple injuries");
L.marker([-26.232261550432934, 27.89992094025297], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Boas Sydney Masilo</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.216743866431486, 27.893474885302695], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> E.N. Masilo</b><br /></b><br />24.8.76<br />Soweto<br />Chopped by hostel residents");
L.marker([-26.21951675108458, 27.889788179013614], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> David Masinga, 19</b><br /></b><br />16.6.76<br />Soweto<br />");
L.marker([-26.220048638971328, 27.88525850090031], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> David Masuiga, 19</b><br /></b><br />16.6.76<br />Soweto<br />");
L.marker([-25.710327878018788, 28.390313457457438], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Aaron Mathabathe</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-25.721645916942425, 28.387285264468414], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Elifas Mathagane</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.220900873336696, 27.895926956006807], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jacob Sydney Mathebula, 22</b><br /></b><br />4.7.76<br />Soweto<br />Shot through leg");
L.marker([-26.232271803427412, 27.88221689609963], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Josiah Mathebula, 54</b><br /></b><br />26.12.76<br />Soweto<br />Spinal cord injury");
L.marker([-34.04438824804011, 18.47839537070382], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Reginald C. Matheson, 18</b><br /></b><br />8.9.76<br />Retreat<br />Shot in back, neck and head from behind");
L.marker([-26.227973169782917, 27.89447060130832], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Johan Mathobela, 19</b><br /></b><br />12.8.76<br />Soweto<br />");
L.marker([-25.724332471926253, 28.373361308994173], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lazarus Matimela</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.226350604356405, 27.885041446305884], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Samuel Matlhaku, 66</b><br /></b><br />26.6.76<br />Soweto<br />");
L.marker([-26.224049669093727, 27.890730347999344], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mackenzie Matome</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.217629926872327, 27.885773431559826], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Abel Jan Matsabu</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.215047472243665, 27.88887914176832], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> E. Matsapola</b><br /></b><br />26.12.76<br />Soweto<br />Two bullet wounds");
L.marker([-26.230705677856534, 27.88108824767898], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jeffrey Matsepe</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.230768731395237, 27.894150364988732], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> James Sello Matsunyane</b><br /></b><br />26.12.76<br />Soweto<br />Shot in the back, the bullet went through the body");
L.marker([-26.21530634724467, 27.894502177177056], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sipho Mavimbela</b><br /></b><br />18.6.76<br />Soweto<br />Shot through chest");
L.marker([-34.05959450641351, 18.479789852461302], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nicholas May, 19</b><br /></b><br />8.9.76<br />Retreat<br />Shot in back");
L.marker([-33.98328078055418, 18.578542295908875], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Zizwe Mazwai, 18</b><br /></b><br />8.9.76<br />Gugulethu<br />Went to visit friend at 6pm. 8.9.76. His was found in the mortuary the next day.");
L.marker([-25.706675948117034, 28.380237157150194], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ames Mbatha</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.213965278323204, 27.88242826831068], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sipho Clement Mbatha, 22</b><br /></b><br />24.10.76<br />Soweto<br />Multiple shotgun wounds in chest and abdomen.");
L.marker([-26.226900181686748, 27.886117663195087], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Frank Mbebe</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.217449177408195, 27.896178491220784], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Princess Mbeki</b><br /></b><br />17.9.76<br />Soweto<br />Police fired on crowed of students at Sekano-Ntoane High School. Gunshot wounds.");
L.marker([-26.213544219565044, 27.89261355498565], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Aaron Mbele</b><br /></b><br />26.12.76<br />Soweto<br />Struck by bullet.");
L.marker([-26.228659897726395, 27.891812012006667], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Simon Mbele</b><br /></b><br />24.10.76<br />Soweto<br />Died of bullet wounds in the head and chest.");
L.marker([-26.22043418089776, 27.882433884452425], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Stanley Mbengwane, 28</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.98275206797147, 18.564046862102614], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Richard McDeci, 35</b><br /></b><br />9.9.76<br />Manenberg<br />Shot in back");
L.marker([-26.21802242170385, 27.893561459322928], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Moses Mchunu, 12</b><br /></b><br />26.12.76<br />Soweto<br />Gross mutilation of the head.");
L.marker([-26.227714918547797, 27.888282909107428], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Mda, 32</b><br /></b><br />17.6.76<br />Soweto<br />Gunshot wounds to chest and lungs");
L.marker([-33.945934763253526, 18.531193713245884], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Dambile Mdayi, 24</b><br /></b><br />11.8.76<br />Langa<br />Shot in chest from front");
L.marker([-26.226966398057726, 27.89130303875809], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Peter Menwe</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22089936757572, 27.893741878639148], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> David Mevana</b><br /></b><br />26.12.76<br />Soweto<br />Shot through sternum");
L.marker([-33.8125783, 18.5044797135871], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Karel Meyer, 45</b><br /></b><br />9.9.76<br />Sherwood Park<br />Shot in right buttock from behind");
L.marker([-26.213084506418586, 27.881257409415632], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Samuel Mhlanga, 17</b><br /></b><br />26.12.76<br />Soweto<br />Fractured skull");
L.marker([-26.09687810952121, 28.10510691199887], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Felix Mhlongo</b><br /></b><br />18.6.76<br />Alexandra<br />Shot - wounded in lung, heart and spinal column");
L.marker([-26.230902327595686, 27.882728530839717], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lord Miller</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.224893992954154, 27.894521077675208], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lily Mithi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.97448793581738, 18.584438561079804], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Douglas Mjamba, 20</b><br /></b><br />12.8.76<br />Gugulethu<br />");
L.marker([-33.95213817061309, 18.536470578247148], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Cajulo Mkafulo, 36</b><br /></b><br />11.8.76<br />Langa<br />Shot through back and heart from behind");
L.marker([-26.220521901918232, 27.89946289964186], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Tusokwakhe Mkhize</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.2494444, 27.8491667], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Elias Mkhotlana, 43</b><br /></b><br />26.12.76<br />Moletsane<br />");
L.marker([-26.227004588984148, 27.897517827108803], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Israel Mkhwanazi, 26</b><br /></b><br />26.12.76<br />Soweto<br />Stab wounds");
L.marker([-26.21294920833291, 27.881510697714464], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lindiwe Mkhwanazi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.21353340366488, 27.88523557232695], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> L Mkwanzi</b><br /></b><br />26.12.76<br />Soweto<br />Shot");
L.marker([-26.231337042158845, 27.896783713266448], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lea Mlangeni</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22795648374741, 27.880788631129064], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mbopha Mlangeni, 18</b><br /></b><br />14.9.76<br />Soweto<br />");
L.marker([-26.21286872828293, 27.885761286896514], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Dennis Mmutle</b><br /></b><br />26.12.76<br />Soweto<br />Bullet wound through the side");
L.marker([-33.99028448103127, 18.571109191282876], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mazwi Mncedisi, 16</b><br /></b><br />9.9.76<br />Gugulethu<br />Left for soccer practice on 9.9.76. His body was found in the mortuary the next day.");
L.marker([-26.23141569955613, 27.89608367886009], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Gideon Mncube, 20</b><br /></b><br />15.7.76<br />Soweto<br />");
L.marker([-26.216453306799757, 27.88343508123583], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mantombi Mnculwane</b><br /></b><br />26.12.76<br />Soweto<br />Shot");
L.marker([-26.226228805673134, 27.89092186400755], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Morris Mngemane, 18</b><br /></b><br />20.6.76<br />Soweto<br />Five bullet wounds.");
L.marker([-26.22952262475066, 27.887060458582823], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Tenson Mngoma</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.221334509515568, 27.88429180367871], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Simon Mngomezulu, 29</b><br /></b><br />18.6.76<br />Soweto<br />");
L.marker([-26.225293890637424, 27.885195648449635], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Agnes Moatlhudi, 10</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.21928963611889, 27.89643782354659], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Titus Moatse, 15</b><br /></b><br />19.7.76<br />Soweto<br />");
L.marker([-26.213827811093896, 27.899006755990463], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Samuel Oupa Modisane, 19</b><br /></b><br />24.8.76<br />Soweto<br />Bullet wound through the heart. Was found dead in the street not far from his house. He was hit by some pellets when the crowd dispersed.");
L.marker([-26.2238889, 27.8666667], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> J. Modise</b><br /></b><br />26.12.76<br />Dobsonville<br />Shot in the stomach");
L.marker([-26.10881290714539, 28.108115983348338], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Isaac Rasebata Modukanele</b><br /></b><br />26.12.76<br />Alexandra<br />Shot");
L.marker([-26.2287167467959, 27.892095232886103], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jacob Modukanele</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.21405536191501, 27.880883894643606], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jacob Moerane, 23</b><br /></b><br />19.6.76<br />Soweto<br />Burnt under vehicle");
L.marker([-26.22975048332165, 27.888248766448378], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> R.A. Mofokeng</b><br /></b><br />17.6.76<br />Soweto<br />Stabbed with bottle");
L.marker([-26.213355050243596, 27.8857643084012], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Johannes Mogola</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22666019550921, 27.895445027774695], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nchimane Philemon Mogotsi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.223134979945034, 27.897679736785733], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Raymond Mofokeng, 14</b><br /></b><br />25.8.76<br />Soweto<br />Gunshot wounds to chest and neck");
L.marker([-26.22253161748289, 27.89496159376222], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> J. Mohamme</b><br /></b><br />24.8.76<br />Soweto<br />Stabbed in the stomach, face sliced off");
L.marker([-26.22204944385262, 27.889910961936554], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Steven Mohapi, 58</b><br /></b><br />18.2.77<br />Soweto<br />Head injuries");
L.marker([-26.22331503981472, 27.890754874886586], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mphele Mohlabane</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-25.5080556, 28.0680556], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Simon Mohwaduba</b><br /></b><br />31.12.76<br />Mabopane<br />");
L.marker([-26.21712389899896, 27.89450596081851], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mohatle Moses Mokgatle, 47</b><br /></b><br />26.12.76<br />Soweto<br />Stab wounds");
L.marker([-26.222259801086782, 27.89700405418262], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Amos Mokoena</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22746714876516, 27.89196689967263], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Moses Mokoena</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.213943107856288, 27.895150349625663], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Vincent Mokoena</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22853139598277, 27.89409279779647], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lobian Molapo</b><br /></b><br />261276<br />Soweto<br />");
L.marker([-26.222201366184176, 27.893603021721177], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Molefe, 19</b><br /></b><br />25.6.76<br />Soweto<br />");
L.marker([-26.217959915185368, 27.887574118745015], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Peter Molefe, 21</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.23249088148881, 27.892003671551144], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Hendrick Moleko</b><br /></b><br />18.6.76<br />Soweto<br />Shot in the stomach");
L.marker([-26.23244717691693, 27.899119413581133], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Joseph S. Mononyane</b><br /></b><br />18.6.76<br />Soweto<br />");
L.marker([-26.225111859489452, 27.888315866241825], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Elijah Montjane</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.215334554750207, 27.884363062454497], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Johan Mooketsi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.230717625415586, 27.89868242851176], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> J.P. Morolong</b><br /></b><br />23.9.76<br />Soweto<br />Stabbed and beaten to death");
L.marker([-33.91707719299154, 18.59921494471323], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Phillip Moses, 41</b><br /></b><br />7.9.76<br />Ravensmead<br />Shot in stomach from front");
L.marker([-33.95364002974428, 18.534640089554195], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ezekiel Mosie, 18</b><br /></b><br />12.8.76<br />Langa<br />Shot in head from front in front of Langa Police Station");
L.marker([-26.2198457350272, 27.88138329437495], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Daniel Nethan Motsweni</b><br /></b><br />25.9.76<br />Soweto<br />Gunshot wounds");
L.marker([-26.21827401695819, 27.88060997288843], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lawrence Mphetha</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.2175362042407, 27.88637335563264], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Joseph Mphithi</b><br /></b><br />Soweto<br />");
L.marker([-26.225711355435458, 27.89211232641041], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Joseph Mpinga, 34</b><br /></b><br />25.9.76<br />Soweto<br />");
L.marker([-26.22083089527794, 27.89328220713605], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Simon Mpusula</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.21499339260288, 27.881739032003818], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lawrence Mshelwane, 27</b><br /></b><br />26.12.76<br />Soweto<br />Gunshot wounds to abdomen");
L.marker([-33.979331028199226, 18.581707131908242], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Welili R Mshudulu, 23</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in chest from front");
L.marker([-33.99054065354459, 18.58837742619631], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Daniel Mrwebi, 23</b><br /></b><br />12.8.76<br />Gugulethu<br />Shot in stomach from front");
L.marker([-26.21318404636956, 27.88373366564705], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mbekiseni Msimanga</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.978220345805155, 18.58238762913545], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Temba Mteto, 21</b><br /></b><br />31.8.76<br />Gugulethu<br />");
L.marker([-26.223789796227596, 27.887968040058635], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> John Mthembo</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.231762926233486, 27.89313920706877], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Reuben Mthembu, 19</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.214959145972195, 27.8804754210297], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> M. Mthombeni</b><br /></b><br />26.12.76<br />Soweto<br />Attacked by thugs");
L.marker([-26.231137341094335, 27.890361132353572], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Simon Mtshadi</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.22535736861867, 27.882456859450368], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Bennett Mubuya</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.21883992986385, 27.889028735445788], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Dennis Mukel</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.91679895781063, 18.576006423951036], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jurie Muller, 16</b><br /></b><br />9.9.76<br />Elsies' River<br />Shot in side of head and upper body");
L.marker([-33.974517793165205, 18.588957785139435], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Rebson Mvukuse</b><br /></b><br />17.9.76<br />Gugulethu<br />Shot");
L.marker([-33.95481821074241, 18.53622787937599], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> M.B.A. Mzwamadoda, 35</b><br /></b><br />11.8.76<br />Langa<br />Shot in right shoulder from behind");
L.marker([-26.22097708570195, 27.884075556542587], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Hezia Mzila</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.215350446669, 27.891738107187827], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Ambrose Nabuka</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-25.709761790456277, 28.377883071467004], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Michael Nare</b><br /></b><br />31.12.76<br />Mamelodi<br />");
L.marker([-26.215592781624906, 27.891636359058147], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Daniel Ncube</b><br /></b><br />26.12.76<br />Soweto<br />Bullet wound to hip");
L.marker([-26.225449607047317, 27.893917024377284], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Herbert Ndau</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.2215928884295, 27.881974984205083], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Zuzele Ndebele</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.2286847974823, 27.892704347641715], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Michael Ndibongo</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.984149559966816, 18.57317844482949], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Mzimkhulu Ndingane, 11</b><br /></b><br />14.9.76<br />Gugulethu<br />Shot in stomach from front");
L.marker([-26.22498536699343, 27.891717579148896], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Hector Ndlela, 20</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.230342303139135, 27.89149314221354], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> H.J. Ndlovu</b><br /></b><br />26.12.76<br />Soweto<br />Bullet wound to forehead");
L.marker([-26.229730011339736, 27.889818800145466], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Jimmy Ndlovu</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.212847488428054, 27.894867132973843], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Lesley Hastings Ndlovu, 17</b><br /></b><br />16.6.76<br />Soweto<br />");
L.marker([-26.21463681648296, 27.892761530164034], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Obed Ndlovu, 16</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-26.218077614597203, 27.888285010377427], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Timothy Ndlovu, 36</b><br /></b><br />18.6.76<br />Soweto<br />");
L.marker([-26.22013298894555, 27.88270512314167], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Herber Ndou</b><br /></b><br />26.12.76<br />Soweto<br />");
L.marker([-33.95520316563342, 18.533978080013156], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Sifanelo K. Nduna, 38</b><br /></b><br />11.8.76<br />Langa<br />Shot in small of back and loin from behind");
L.marker([-33.97849121314085, 18.58236199997665], {icon: cross_icon}).addTo(mymap)
.bindPopup("<b><b> Nicholas S. Ndunga, 22</b><br /></b><br />11.8.76<br />Gugulethu<br />Shot in chest from front at bottle store");