Fix edge width and tunnel edge color

This commit is contained in:
Itay Mizeretz 2017-10-01 18:36:23 +03:00
parent 27d9e8bcee
commit 48be73bc3f
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ let options = {
improvedLayout: false
},
edges: {
width: 2,
smooth: {
type: 'curvedCW'
}
@ -61,7 +62,7 @@ class MapPageComponent extends React.Component {
case 'exploited':
return '#c00';
case 'tunnel':
return '#aaa';
return '#0058aa';
case 'scan':
return '#f90';
case 'island':