-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMetroVancouverHomicides.kml
5227 lines (5227 loc) · 270 KB
/
MetroVancouverHomicides.kml
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>Metro Vancouver homicides, 2009 to 2017</name>
<description><![CDATA[The Vancouver Sun's full list of all murders committed in Metro Vancouver and the Fraser Valley in 2018 (dark red circles), 2017 (black stars), 2016 (brown pointers), 2015 (orange pointers), 2014 (aqua pointers), 2013 (purple pointers), 2012 (blue pointers), 2011 (green pointers), 2010 (yellow pointers) and 2009 (red pointers).]]></description>
<Style id="icon-159-normal">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/159-blue-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-159-highlight">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/159-blue-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-159">
<Pair>
<key>normal</key>
<styleUrl>#icon-159-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-159-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-161-normal">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/161-grn-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-161-highlight">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/161-grn-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-161">
<Pair>
<key>normal</key>
<styleUrl>#icon-161-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-161-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-164-normal">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/164-ltblu-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-164-highlight">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/164-ltblu-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-164">
<Pair>
<key>normal</key>
<styleUrl>#icon-164-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-164-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-166-normal">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/166-purple-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-166-highlight">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/166-purple-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-166">
<Pair>
<key>normal</key>
<styleUrl>#icon-166-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-166-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-167-normal">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/167-red-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-167-highlight">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/167-red-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-167">
<Pair>
<key>normal</key>
<styleUrl>#icon-167-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-167-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-168-normal">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/168-ylw-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-168-highlight">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/168-ylw-pushpin.png</href>
</Icon>
<hotSpot x="10" xunits="pixels" y="31" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-168">
<Pair>
<key>normal</key>
<styleUrl>#icon-168-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-168-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-503-795046-normal">
<IconStyle>
<color>ff465079</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="16" xunits="pixels" y="32" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-503-795046-highlight">
<IconStyle>
<color>ff465079</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="16" xunits="pixels" y="32" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-503-795046">
<Pair>
<key>normal</key>
<styleUrl>#icon-503-795046-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-503-795046-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-503-F4B400-normal">
<IconStyle>
<color>ff00b4f4</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="16" xunits="pixels" y="32" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-503-F4B400-highlight">
<IconStyle>
<color>ff00b4f4</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="16" xunits="pixels" y="32" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-503-F4B400">
<Pair>
<key>normal</key>
<styleUrl>#icon-503-F4B400-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-503-F4B400-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-503-F8971B-normal">
<IconStyle>
<color>ff1b97f8</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="16" xunits="pixels" y="32" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-503-F8971B-highlight">
<IconStyle>
<color>ff1b97f8</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x="16" xunits="pixels" y="32" yunits="insetPixels"/>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-503-F8971B">
<Pair>
<key>normal</key>
<styleUrl>#icon-503-F8971B-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-503-F8971B-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-959-A61B4A-normal">
<IconStyle>
<color>ff4a1ba6</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/959-wht-circle-blank.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-959-A61B4A-highlight">
<IconStyle>
<color>ff4a1ba6</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/959-wht-circle-blank.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-959-A61B4A">
<Pair>
<key>normal</key>
<styleUrl>#icon-959-A61B4A-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-959-A61B4A-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id="icon-960-000000-normal">
<IconStyle>
<color>ff000000</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/960-wht-star-blank.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-960-000000-highlight">
<IconStyle>
<color>ff000000</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/960-wht-star-blank.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-960-000000">
<Pair>
<key>normal</key>
<styleUrl>#icon-960-000000-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-960-000000-highlight</styleUrl>
</Pair>
</StyleMap>
<Folder>
<name>The Victims</name>
<Placemark>
<name>Lakhwinder Singh Bal - Aug. 19, 2018
</name>
<description>The 48-year-old Surrey man died from serious injuries sustained in a fight near a McDonalds. Bal was known to police and investigators believe his murder was not a random act. Bal had a criminal record that included convictions for assault and uttering threats.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.8648496,49.1769764,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Willis Hunt - Aug. 10, 2018
</name>
<description>The 33-year-old man was the victim of a deadly road rage incident. He was the passenger in a grey Toyota Matrix driving past the PNE when the driver accidentally cut off a white sedan. The driver turned on McGill Street, with the white sedan hot on their heels. Willis was shot after getting out of the car. It was Vancouver’s 14th homicide of the year.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.0323482,49.2838058,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Leonardo Ngo - Aug. 6, 2018
</name>
<description>Police responding to a reported stabbing found a man who was suffering from serious injuries. He is expected to survive. A short time later, a second man, Ngo, 20, was dropped off at a hospital also suffering from serious injuries but did he did not survive. Ngo was known to police and investigators believe this was not a random incident.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.8006268,49.1971857,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Gagandeep Singh Dhaliwal - Aug. 4, 2018
</name>
<description><![CDATA[The 19-year-old was killed and another man injured after a shooting at a home in Abbotsford.<br>Police say it was a targeted incident.]]></description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.3080766,49.0404562,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Chelsea Lynn De Forge - Aug. 1, 2018
</name>
<description><![CDATA[The 31-year-old Vancouver woman was found dead at the Regal Hotel on Granville Street. Her death was Vancouver’s 13th homicide of 2018.<br>Police don’t believe this was a random event.]]></description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.1246376,49.2782347,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Matthew Alexander Navas-Rivas - July 25, 2018
</name>
<description><![CDATA[The 28-year-old man was slain outside a school in a targeted shooting. Navas-Rivas and a friend were walking their dogs in the area when a person approached Navas-Rivas and shot him.<br>Officers found him suffering gunshot wounds and he was taken to hospital but died a short time later. His friend was unharmed. Investigators said there was no further risk to the public. It was Vancouver’s 12th homicide of 2018.]]></description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.0564451,49.2866752,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Aaliyah Rosa - July 22, 2018
</name>
<description>The seven-year-old girl was found dead at a Langley apartment where she llived. A 36-year-old woman who was also found at the scene received medical care, and investigators believe she was involved. Aaliyah and the woman knew each other. Police say the young girl’s death was an isolated incident.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.666527,49.1262905,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Unidentified man - July 1, 2018
</name>
<description>The 20-year-old man shot in Abbotsford later died in hospital. An 18-year-old man was arrested at the scene. Charges have not yet been laid. Police said the incident is not believed to be gang-related and the two men were known to each other.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.2767162,49.0483185,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Shane John Tolmie - June 29, 2018
</name>
<description>The 26-year-old Vancouver resident died after a stabbing in an apartment. A 24-year-old woman was arrested at the scene. She has since been released pending further investigation. It is the city’s 11th homicide of the year.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.107568,49.2811043,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Abeal Negussie Abera - June 23, 2018
</name>
<description><![CDATA[During an altercation in Vancouver's Downtown Eastside, a 26-year-old Surrey man was injured critically and rushed to hospital with a stab wound. He died a week later from his injuries. No arrests were made though investigators believe it is a targeted attack and that there is no risk to the general public. It was the city’s 10th homicide of the year.]]></description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.1071711,49.2820002,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Paul Bennett - June 23, 2018
</name>
<description>The 47-year-old Surrey man died of gunshot wounds after a shooting in his driveway. Bennett coached nine to 11-year-olds with the Cloverdale Titans Atom C team last season. Bennett’s death also sent shock waves through Peace Arch Hospital where he worked as a nurse. The Integrated Homicide Investigation Team released Bennett’s name to the public in hopes of getting clues to help determine motive for the shooting.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.7159977,49.1246546,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Zacharia Nicolli Cross - June 7, 2018
</name>
<description>The 25-year-old Chilliwack man was found dead in a home, his injuries consistent with homicide, according to police. Police say the murder may have been targeted. Cross was known to police and associated with drug activity.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-121.9691849,49.1764293,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Jaskarn (Jason) Singh Jhutty and Jaskaran (Jesse) Singh Bhangal - June 4, 2018</name>
<description>Jhutty, 16, and Bhangal, 17, both Surrey high school students, were found at the side of the road in the 18800-block of 40th Avenue. Both had suffered gunshot wounds and were declared dead at the scene. The victims were not known to police but investigators believe the killings were targeted.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.7019215,49.0747093,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Gregory Joseph Scuby- May 17, 2018</name>
<description>The body of the 42-year-old Richmond man was found on a dirty road. Scuby was known to police.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.0939531,49.1204417,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Amanjot Singh Hans - May 15, 2018</name>
<description>The 31-year-old Surrey man was gunned down at a gas station in Langley. Police discovered Hans lying on the ground and suffering gunshot wounds. He died in hospital.The Integrated Homicide Investigation Team believes the shooting was targeted. Soon after the shooting, the Langley RCMP was called about a burning dark-coloured Dodge pickup truck in the 8300-block of 196th Street.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.5816941,49.1334161,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Keri Smith and Terrence Peter Smith - May 1, 2018
</name>
<description>The bodies of 36-year-old Keri Smith and 37-year-old Terrence Peter Smith were found inside a home by police responding to reported gunshots. IHIT says the couple had recently moved to Richmond from Surrey. They also have ties to Vernon. Both victims were known to police and investigators believe this was a targeted incident.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.1301308,49.1658514,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ian Roberts - April 30, 2018
</name>
<description>The body of the 43-year-old Delta man was found near the dykes in Pitt Meadows. Roberts was known to police and investigators believe the homicide was a targeted hit. Also on the same day his body was found, the Langley RCMP recovered a red 1996 GMC Jimmy that was associated to Roberts in the area of 56 Avenue and Logan Avenue.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.6775885,49.264248,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Christopher Thomas Schiller - April 26, 2018
</name>
<description>The 37-year-old Vancouver resident approached staff at the Parq Casino near Smithe Street and Pacific Boulevard seeking medical assistance. He was rushed to hospital for surgery, but died a short time later. Investigators followed a trail of blood to Cooper’s Park, just east of the Cambie Street Bridge near Marinaside Crescent, and believe that Schiller was involved in a confrontation there. But they have yet to determine what led to Schiller’s death, the eighth homicide in Vancouver this year.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.1142521,49.2733279,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Amin Vinepal - April 26, 2018
</name>
<description>The body of the 24-year-old Delta resident was found on the road in Surrey. He appeared to have been shot. Around the same time a vehicle fire was reported in the 18700-block of 28th Avenue.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.7303743,49.0239399,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Dam Minh Huu - April 22, 2018
</name>
<description>The 55-year-old male was found at Kingsway and Nanaimo streets at about 1:30 a.m. He was transported to hospital by paramedics but died. Charges of second-degree murder were later approved against Ngoc Chau Nguyen, 48. Police said the two men knew each other and got into an argument a few blocks away.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.0582905,49.2418106,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pardip Brar - March 9, 2018
</name>
<description>The 23-year-old Delta man was killed in a targeted, gang-related shooting in Newton. Investigators with the Integrated Homicide Investigation Team say Brar was known to police, had and investigators believe his murder was targeted and linked to other gang violence in the Lower Mainland. RCMP had previously alled Brar was involved in drug dealing. No arrests have been made. IHIT says a white sport utility vehicle and a black sedan were seen leaving the area after the shooting</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.8410101,49.1196483,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Donald Kelly - Feb. 16, 2018
</name>
<description>The 45-year-old Burnaby resident was fatally shot in Coquitlam. The victim was found inside a vehicle, while witnesses told police another vehicle was spotted speeding away. A short time later, Coquitlam RCMP located a sedan burning near Mariner Way and Dartmoor Drive. Police have not said whether the burning car is connected to the fatal shooting the same evening, but have said the shooting is believed to be targeted.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.8081584,49.2522743,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Kaminder Rai - Feb. 15, 2018
</name>
<description>The 32-year-old man from Surrey was killed in a targeted shooting in Kerrisdale. He was identified online as a real estate agent. Rai was found suffering from a gunshot wound on Marguerite Street near West 49th Avenue just before 1 p.m. He was rushed to hospital, where he later died.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.1450224,49.227155,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Tarek Ali Al-Romeshi - Feb. 9, 2018
</name>
<description>The 23-year-old Surrey resident was found fatally wounded at a townhouse complex in the 8200-block of 204B Street. Police said he was found inside a vehicle with gunshot wounds. He was taken to hospital, where he was pronounced dead. Police believe the murder was targeted. A short time after the report of shots fired, the Langley RCMP received a call of a burning vehicle a short distance away. The burnt vehicle was a 2009 white Nissan 370Z.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.6564205,49.1528995,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Unidentified man - Feb. 6, 2018
</name>
<description>The 51-year-old man suffered critical injuries in an assault outside the Astoria Hotel. Four days later, police confirmed the man had died. A 42-year-old Vancouver man was arrested at the scene and was later released pending further investigation.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.0871296,49.2811393,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Cody Isaacson - Jan. 31, 2018
</name>
<description>The 28-year-old Chilliwack resident was found in a home after Chilliwack RCMP received reports of shots fired. He later died in hospital of his injuries. Isaacson is known to police. Police say they believe his murder was targetted.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-121.9353676,49.169864,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Kalwinder Thind – Jan. 27, 2018</name>
<description>Thind, 23, was working at the Cabana nightclub, 1159 Granville Street, when a fight started outside about 2:30 a.m. He tried to break it up and ended up fatally stabbed.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.1253886,49.2777237,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sachdeep Singh Dhoot - Jan. 18, 2018
</name>
<description><![CDATA[The body of the 18-year-old Surrey resident was found inside the trunk of a stolen vehicle that had been abandoned in Vancouver. Police say it doesn't appear to be a random murder. Dhoot had been reported missing to the Surrey RCMP. He was last seen alive on Jan. 9 in Newton.]]></description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.0415106,49.2422169,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Lovepreet “Jason” Dhaliwal - Jan. 19, 2018
</name>
<description>The 24-year-old was gunned down near Ridgeview Drive and Promontory Court. He was pronouced dead at the scene. Investigators are looking for information about a black Acura TL seen leaving the area immediately after the shooting. Dhaliwal was charged in 2012 with being unlawfully in a house and with disguising his face with intent. But the charges were dropped after new information became available.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.3486853,49.0664997,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Kevin Whiteside and Alfred Wong - Jan. 13, 2018
</name>
<description>Whiteside, a 23-year-old Vancouver man who was known to police, died in a shooting that also killed one bystander and injured another. Police say Whiteside was exchanging gunfire with another person. Wong, a 15-year-old Coquitlam boy who was in a vehicle passing through the area, died two days later after also being shot. Another innocent bystander, a 30-year-old Vancouver man who was driving the area, was treated for minor injuries and released at the scene.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.1048536,49.2630158,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Shawnn Patrick Cotter - Jan. 7, 2018
</name>
<description><![CDATA[The 37-year-old Surrey resident was found dead inside a home in the 17800-block of 64 Avenue. Police said they don't believe his death is random.]]></description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-122.7291727,49.118939,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Jwada Hedar-Kadhim - Jan. 2, 2018
</name>
<description>The 47-year-old was the victim in Metro Vancouver’s first homicide of 2018. Police responded to a report of a fight inside an apartment building. Hedar-Kadhim, who is known to police, was found lying inside the lobby, suffering from wounds sustained in a violent confrontation.</description>
<styleUrl>#icon-959-A61B4A</styleUrl>
<Point>
<coordinates>
-123.004303,49.2244364,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Alexander Blanarou - Dec. 28, 2017
</name>
<description><![CDATA[The 24-year-old Surrey resident was fatally shot and his body was found near Bates Road and Harris Road. He was known to police . It's believed to be a targeted shooting.]]></description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.354393,49.1025893,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Manricco “Ricco” Sansalone - Dec. 22, 2017
</name>
<description>The young man died from gunshot wounds after making his way to Ridge Meadows hospital from nearby Kin Park, where the shooting is believed to have occurred at about 6 a.m. Sansalone is the son of one Hells Angel and the great-nephew of another. The young man had no criminal record, according to the online court database. But his father Joseph Sansalone and great-uncle Vincenzo “Jimmy” Sansalone are both members of the notorious biker gang’s Haney chapter.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.6181078,49.222138,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Gavinder Grewal- Dec. 22, 2017
</name>
<description>The 30-year-old North Vancouver man with gang ties was found dead in an apartment, police said. He was known to police and associated with gang activity.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.0296445,49.3115403,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Orlando Ocampo - Dec. 20, 2017
</name>
<description>The 86-year-old Vancouver man was rushed to hospital and died of his injuries on Jan. 11, 2018 after an altercation weeks earlier outside Costco. Vancouver resident,Thomas Stephen Toth, 58, was identified early in the investigation, and has since been charged with manslaughter. .</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.109746,49.2782277,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Dai Duong - Dec. 7, 2017
</name>
<description>The 21-year-old Abbotsford man died after a shooting in Langley. Police say the death may be linked to recent gang violence in Metro Vancouver.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.6570749,49.1508645,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>John Davidson - Nov. 6, 2017
</name>
<description>The Abbotsford police officer was shot dead while responding to a call. The Alberta man accused of shooting him, 65-year-old Oscar Ferdinand Arfmann, has been charged with first-degree murder. The shooting followed a call to police about a possible stolen vehicle in the parking lot of a strip mall on Mount Lehman Road.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.3811722,49.0610868,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Randeep Kang - Oct. 27, 2017
</name>
<description>The 27-year-old Vancouver resident was one of two men found suffering from gunshot injuries. He was pronounced dead at the scene. Kang was known to police and associated to gang activity. Investigators believe his murder was targeted and linked to other gang violence in the Lower Mainland.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.8488207,49.2094953,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Nicholas Khabra - Oct. 23, 2017
</name>
<description><![CDATA[The 28-year-old Surrey man was the victim of a fatal shooting in a targeted attack that also wounded his female companion. The wounded woman called police from her vehicle a short distance away to say that she had also been shot. Khabra has a criminal history. In September 2018, a warrant was issued for the arrest of 27-year-old Brandon Nathan Teixeira who was charged with first degree murder in connection with Khabra's death.]]></description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.824595,49.0675119,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Marline Mars - Oct. 13, 2017
</name>
<description>The 34-year-old Vancouver resident was found dead inside a West End apartment. Paramedics on scene called police after they found the woman inside the home, along with other injured people who were considered witnesses. Investigators believe the attacker fled before first-responders arrived and that the incident wasn’t a random attack. It was the city’s 17th homicide of the year.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.1369543,49.2813843,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Joseph Glen Jandrew - Oct. 13, 2017
</name>
<description>The 33-year-old man was rushed to hospital, where he died of his injuries from stab wounds. Investigators do not believe it was a random attack and are asking for more witnesses to come forward. No arrests have been made in Vancouver’s 16th homicide of 2017.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.0697918,49.2697507,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Amjad Ibrahim - Oct. 10, 2017
</name>
<description>The 30-year-old Surrey man was known to police and investigators believe his murder was targeted. Ibrahim was associated with gangs, police said. His body was discovered in Garden City Park. It appeared he sustained gunshot wounds.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.1238651,49.1632978,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Diana Mah-Jones and Richard Jones - Sept. 27, 2017
</name>
<description>The married couple age 65, and 68 were found dead in their home on Wednesday around 1:30 p.m. after police were called to check on the well-being of the Marpole residents. Police said the homicides, the city’s 14th and 15th of the year, appear to be random. Rocky Rambo Wei Nam Kam, a 25-year-old resident of Vancouver, was charged Nov. 7 with two counts of second-degree murder.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.1337357,49.2130277,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Unidentified person - Sept. 18, 2017
</name>
<description>Three people were stabbed, one fatally, at a Kingsway sushi restaurant. The victim was stabbed to death inside Sushi Oyama (5152 Kingsway). Burnaby RCMP arrested a man a short distance from the scene. The two other victims suffered non-life threatening injuries, according to an RCMP release.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.9897976,49.2251651,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Joseph Lucien De Carvalho - Sept. 18, 2017
</name>
<description><![CDATA[The 41-year-old Richmond man was found in the street suffering from gunshot wounds. He is known to police and his death was believed to be targeted. It was Richmond's seventh homicide of the year.]]></description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.1169558,49.1573762,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Brandy Petrie and Avery Levely-Flescher - Sept. 1, 2017
</name>
<description>The 34-year-old Burnaby woman and 20-year-old Surrey man were found by police who responded to a report of shots fired at 232 Street and 64 Avenue in Langley. Both were suffering gunshot wounds. Neither survived. Days later, Langley resident Travis MacPhail was charged with two counts of second-degree murder along with additional charges of possession of a prohibited or restricted firearm, uttering threats and aggravated sexual assault.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.5815868,49.1188829,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sehajdeep Sidhu - Aug. 31, 2017
</name>
<description>The 18-year-old Abbotsford resident was found in a parked vehicle with gunshot wounds. He was pronounced deceased at scene. Sidhu did not have a criminal record but was known to police. Police believe his murder was targeted and is linked to other gang violence. Investigators have determined there were two other victims of the shooting and they are expected to survive. The suspect vehicle, a black Nissan Pathfinder, was located in the 27000 block of 60th Avenue in Langley approximately 30 minutes after the shooting.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.3151684,49.0169322,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pardeep Singh - Aug. 29, 2017
</name>
<description>The 22-year-old Surrey resident was shot to death in the driveway of his Cloverdale home. Singh was known to police and was associated to gangs. Investigators believe Singh’s murder was targeted.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.7623463,49.1177874,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Roscoe Henry Carmack - Aug. 28, 2017
</name>
<description><![CDATA[The 53-year-old Vancouver resident was found dead inside a Downtown Eastside apartment. Randall Whitworth Hill, 34, had been charged with one count of second degree murder. It is the city's 13th homicide of the year.]]></description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.0913997,49.2839458,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Tanner Krupa - August 20, 2017
</name>
<description>The body of the 19-year-old from Edmonton was found in an alley by Surrey RCMP who were responding to a report of an altercation. He had suffered injuries consistent with homicide.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.8693128,49.1293304,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Chelsey Gauthier - Aug. 16, 2017
</name>
<description>The 22-year-old, was reported missing to the Abbotsford Police Department on July 27. A body was found by APD investigators on Aug. 16 in an area of Mission near Sylvester Road and Dale Road. On Aug. 24, IHIT investigators confirmed the identity of the dead woman to be Gauthier through DNA analysis. Police said evidence suggests her death was not random.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.2301102,49.1994292,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Jaspreet Sidhu - August 4, 2017
</name>
<description>The 18-year-old Abbotsford resident was shot about 3:15 p.m. while driving a Chrysler 300. He died of his wounds in hospital. The teen was known to police as being involved in gang activity; the shooting is not believed to be random.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.3243737,49.0557014,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Bhavkiran (Kiran) Dhesi - Aug. 2, 2017
</name>
<description><![CDATA[The 19-year-old Surrey woman was last seen when she left home to have dinner with friends.<br>Just three hours later, her body was found inside a vehicle that had been on fire in South Surrey. Homicide investigators have said the death is not random and that it is not gang related.]]></description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.7048397,49.0384306,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Yee Hung (Roland) Chin - July 21, 2017
</name>
<description>The 33-year-old man died in hospital after being shot in the 43900 block of Progress Way. Chin had most recently lived in Chilliwack and was known to police. Chin had an extensive criminal history in Calgary.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-122.0104265,49.1497978,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Marrisa Shen - July 19, 2017
</name>
<description>The body of the 13-year-old Burnaby girl was found in Central Park shortly after she was reported missing. Police say it was a random attack. In September 2018, Ibrahim Ali, 28, was charged with first-degree murder in her death. Ali was a Syrian refugee living in Burnaby.</description>
<styleUrl>#icon-960-000000</styleUrl>
<Point>
<coordinates>
-123.0171347,49.2242122,0
</coordinates>
</Point>
</Placemark>
<Placemark>