-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathgeo_assets.js
17 lines (15 loc) · 1.06 KB
/
geo_assets.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
exports.topojsons = {};
exports.topojsons['world_110m'] = require('./topojson/world_110m.json');
exports.topojsons['africa_110m'] = require('./topojson/africa_110m.json');
exports.topojsons['asia_110m'] = require('./topojson/asia_110m.json');
exports.topojsons['europe_110m'] = require('./topojson/europe_110m.json');
exports.topojsons['north-america_110m'] = require('./topojson/north-america_110m.json');
exports.topojsons['south-america_110m'] = require('./topojson/south-america_110m.json');
exports.topojsons['usa_110m'] = require('./topojson/usa_110m');
exports.topojsons['world_50m'] = require('./topojson/world_50m.json');
exports.topojsons['africa_50m'] = require('./topojson/africa_50m.json');
exports.topojsons['asia_50m'] = require('./topojson/asia_50m.json');
exports.topojsons['europe_50m'] = require('./topojson/europe_50m.json');
exports.topojsons['north-america_50m'] = require('./topojson/north-america_50m.json');
exports.topojsons['south-america_50m'] = require('./topojson/south-america_50m.json');
exports.topojsons['usa_50m'] = require('./topojson/usa_50m.json');