meshviewer/app.js

27 lines
693 B
JavaScript
Raw Normal View History

2016-05-27 21:59:01 +00:00
"use strict";
require.config({
baseUrl: "lib",
paths: {
"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"
},
shim: {
"leaflet.label": ["leaflet"],
"tablesort": {
exports: "Tablesort"
}
}
});
2015-03-29 02:35:20 +00:00
2016-06-01 20:20:14 +00:00
require(["main"], function (main) {
main(jsonData);
});