2016-05-27 21:59:01 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-03-29 01:35:10 +00:00
|
|
|
require.config({
|
|
|
|
baseUrl: "lib",
|
|
|
|
paths: {
|
2017-01-16 16:39:17 +00:00
|
|
|
"leaflet": "../node_modules/leaflet/dist/leaflet",
|
|
|
|
"leaflet.label": "../node_modules/leaflet-label/dist/leaflet.label",
|
|
|
|
"chroma-js": "../node_modules/chroma-js/chroma.min",
|
|
|
|
"moment": "../node_modules/moment",
|
|
|
|
"tablesort": "../node_modules/tablesort/src/tablesort",
|
|
|
|
"d3": "../node_modules/d3/d3.min",
|
|
|
|
"virtual-dom": "../node_modules/virtual-dom/dist/virtual-dom",
|
|
|
|
"rbush": "../node_modules/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
|
|
|
});
|