Skip to content

Commit

Permalink
Feature - Integrated Fusion Charts Maps , added NavBar
Browse files Browse the repository at this point in the history
  • Loading branch information
AbigailFernandes committed Apr 9, 2019
1 parent 701e446 commit 4e71b0e
Show file tree
Hide file tree
Showing 8 changed files with 727 additions and 37 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules
/vscode
/.vscode
/.vscode
/dist
173 changes: 170 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
},
"dependencies": {
"axios": "^0.18.0",
"fusioncharts": "^3.13.4",
"mapbox-gl": "^0.53.1",
"vue": "^2.6.6",
"vue-chartkick": "^0.5.0",
"vue-fusioncharts": "^3.0.2",
"vuetify": "^1.5.6"
},
"devDependencies": {
Expand Down
2 changes: 0 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link href='https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css' rel='stylesheet' />
<link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons' rel="stylesheet">
<title>BigMood</title>
<script src="https://www.gstatic.com/charts/loader.js"></script>
</head>
<body>
<noscript>
Expand Down
8 changes: 5 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
<template>
<div id="app">
<NavBar/>
<GeoMap/>
</div>
</template>

<script>
import GeoMap from './components/GeoMap.vue'
import NavBar from './components/NavBar.vue'
export default {
name: 'app',
components: {
GeoMap
GeoMap,
NavBar
}
}
</script>
Expand All @@ -22,6 +24,6 @@ export default {
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
/* margin-top: 60px; */
}
</style>
Loading

0 comments on commit 4e71b0e

Please sign in to comment.