-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1444 from Alex-NRCan/feat-geoview-geochart
GeoView-GeoChart Plugin (#1444)
- Loading branch information
Showing
32 changed files
with
13,221 additions
and
20 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
145 changes: 145 additions & 0 deletions
145
packages/geoview-core/public/configs/package-geochart-map1-config-geochart-2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
{ | ||
"suportedLanguages": ["en", "fr"], | ||
"charts": [{ | ||
"layers": [{ | ||
"layerId": "geojsonLYR5/polygons.json" | ||
}], | ||
"chart": "line", | ||
"geochart": { | ||
"xAxis": { | ||
"property": "label" | ||
}, | ||
"yAxis": { | ||
"property": "data" | ||
} | ||
}, | ||
"datasources": [{ | ||
"display": "Feature", | ||
"items": [{ | ||
"data": 92, | ||
"label": "Hockey", | ||
"location": "Victoria" | ||
},{ | ||
"data": 43.54, | ||
"label": "Baseball", | ||
"location": "Victoria" | ||
},{ | ||
"data": 12.3, | ||
"label": "Basketball", | ||
"location": "Victoria" | ||
},{ | ||
"data": 66, | ||
"label": "Football", | ||
"location": "Victoria" | ||
},{ | ||
"data": 75, | ||
"label": "Soccer", | ||
"location": "Victoria" | ||
},{ | ||
"data": 553, | ||
"label": "Hockey", | ||
"location": "Toronto" | ||
},{ | ||
"data": 54, | ||
"label": "Baseball", | ||
"location": "Toronto" | ||
},{ | ||
"data": 32.553, | ||
"label": "Basketball", | ||
"location": "Toronto" | ||
},{ | ||
"data": 5.43, | ||
"label": "Football", | ||
"location": "Toronto" | ||
},{ | ||
"data": 55, | ||
"label": "Soccer", | ||
"location": "Toronto" | ||
},{ | ||
"data": 155, | ||
"label": "Hockey", | ||
"location": "Montreal" | ||
},{ | ||
"data": 55, | ||
"label": "Baseball", | ||
"location": "Montreal" | ||
},{ | ||
"data": 255, | ||
"label": "Basketball", | ||
"location": "Montreal" | ||
}] | ||
}] | ||
}, | ||
{ | ||
"layers": [{ | ||
"layerId": "geojsonLYR5/point-feature-group/points.json" | ||
}, { | ||
"layerId": "geojsonLYR5/lines.json" | ||
}], | ||
"chart": "bar", | ||
"geochart": { | ||
"xAxis": { | ||
"property": "label" | ||
}, | ||
"yAxis": { | ||
"property": "data" | ||
} | ||
}, | ||
"datasources": [{ | ||
"display": "Feature", | ||
"items": [{ | ||
"data": 92, | ||
"label": "Hockey", | ||
"location": "Victoria" | ||
},{ | ||
"data": 43.54, | ||
"label": "Baseball", | ||
"location": "Victoria" | ||
},{ | ||
"data": 12.3, | ||
"label": "Basketball", | ||
"location": "Victoria" | ||
},{ | ||
"data": 66, | ||
"label": "Football", | ||
"location": "Victoria" | ||
},{ | ||
"data": 75, | ||
"label": "Soccer", | ||
"location": "Victoria" | ||
},{ | ||
"data": 553, | ||
"label": "Hockey", | ||
"location": "Toronto" | ||
},{ | ||
"data": 54, | ||
"label": "Baseball", | ||
"location": "Toronto" | ||
},{ | ||
"data": 32.553, | ||
"label": "Basketball", | ||
"location": "Toronto" | ||
},{ | ||
"data": 5.43, | ||
"label": "Football", | ||
"location": "Toronto" | ||
},{ | ||
"data": 55, | ||
"label": "Soccer", | ||
"location": "Toronto" | ||
},{ | ||
"data": 155, | ||
"label": "Hockey", | ||
"location": "Montreal" | ||
},{ | ||
"data": 55, | ||
"label": "Baseball", | ||
"location": "Montreal" | ||
},{ | ||
"data": 255, | ||
"label": "Basketball", | ||
"location": "Montreal" | ||
}] | ||
}] | ||
}] | ||
} |
Oops, something went wrong.