Skip to content

Commit

Permalink
add Croazia lat lng (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
lulzia authored and markmarkoh committed Oct 25, 2016
1 parent 01dd77a commit 3ce067f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/js/datamaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,9 @@
case "CHL":
originXY = self.latLngToXY(-33.448890, -70.669265);
break;
case "HRV":
originXY = self.latLngToXY(45.815011, 15.981919);
break;
case "IDN":
originXY = self.latLngToXY(-6.208763, 106.845599);
break;
Expand Down Expand Up @@ -409,12 +412,15 @@

if (typeof datum.destination === 'string') {
switch (datum.destination) {
case "CAN":
case "CAN":
destXY = self.latLngToXY(56.624472, -114.665293);
break;
case "CHL":
destXY = self.latLngToXY(-33.448890, -70.669265);
break;
case "HRV":
destXY = self.latLngToXY(45.815011, 15.981919);
break;
case "IDN":
destXY = self.latLngToXY(-6.208763, 106.845599);
break;
Expand Down

0 comments on commit 3ce067f

Please sign in to comment.