2016-05-27 21:59:01 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-03-29 01:35:10 +00:00
|
|
|
require.config({
|
|
|
|
baseUrl: "lib",
|
|
|
|
paths: {
|
|
|
|
"leaflet": "../bower_components/leaflet/dist/leaflet",
|
|
|
|
"leaflet.label": "../bower_components/Leaflet.label/dist/leaflet.label",
|
|
|
|
"chroma-js": "../bower_components/chroma-js/chroma.min",
|
2016-12-26 02:44:59 +00:00
|
|
|
"moment": "../bower_components/moment",
|
2016-05-25 23:48:56 +00:00
|
|
|
"tablesort": "../bower_components/tablesort/src/tablesort",
|
2015-03-31 15:22:36 +00:00
|
|
|
"d3": "../bower_components/d3/d3.min",
|
2015-04-02 17:59:07 +00:00
|
|
|
"virtual-dom": "../bower_components/virtual-dom/dist/virtual-dom",
|
2015-04-19 10:22:09 +00:00
|
|
|
"rbush": "../bower_components/rbush/rbush",
|
2016-05-26 16:37:24 +00:00
|
|
|
"helper": "utils/helper"
|
2015-03-29 01:35:10 +00:00
|
|
|
},
|
|
|
|
shim: {
|
|
|
|
"leaflet.label": ["leaflet"],
|
|
|
|
"tablesort": {
|
|
|
|
exports: "Tablesort"
|
2016-05-25 23:48:56 +00:00
|
|
|
}
|
2015-03-29 01:35:10 +00:00
|
|
|
}
|
2016-05-22 11:23:43 +00:00
|
|
|
});
|
2015-03-29 02:35:20 +00:00
|
|
|
|
2016-06-01 20:20:14 +00:00
|
|
|
require(["main"], function (main) {
|
|
|
|
main(jsonData);
|
2016-05-22 11:23:43 +00:00
|
|
|
});
|