Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 247f925

Browse filesBrowse files
committed
Update dist with new maps
1 parent 22a8e0a commit 247f925
Copy full SHA for 247f925
Expand file treeCollapse file tree

19 files changed

+42
-19
lines changed

‎dist/topojson/africa_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/africa_110m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/africa_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/africa_50m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/antarctica_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/antarctica_110m.json
+1Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

‎dist/topojson/antarctica_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/antarctica_50m.json
+1Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

‎dist/topojson/asia_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/asia_110m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/asia_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/asia_50m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/europe_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/europe_110m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/europe_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/europe_50m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/north-america_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/north-america_110m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/north-america_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/north-america_50m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/oceania_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/oceania_110m.json
+1Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

‎dist/topojson/oceania_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/oceania_50m.json
+1Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

‎dist/topojson/south-america_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/south-america_110m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/south-america_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/south-america_50m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/usa_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/usa_110m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/usa_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/usa_50m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/world_110m.json

Copy file name to clipboardExpand all lines: dist/topojson/world_110m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎dist/topojson/world_50m.json

Copy file name to clipboardExpand all lines: dist/topojson/world_50m.json
+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎src/assets/geo_assets.js

Copy file name to clipboard
+24-5Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
'use strict';
22

3-
var saneTopojson = require('sane-topojson');
3+
const topojson = {
4+
africa_110m: require('../../dist/topojson/africa_110m.json'),
5+
antarctica_110m: require('../../dist/topojson/antarctica_110m.json'),
6+
asia_110m: require('../../dist/topojson/asia_110m.json'),
7+
europe_110m: require('../../dist/topojson/europe_110m.json'),
8+
'north-america_110m': require('../../dist/topojson/north-america_110m.json'),
9+
oceania_110m: require('../../dist/topojson/oceania_110m.json'),
10+
'south-america_110m': require('../../dist/topojson/south-america_110m.json'),
11+
usa_110m: require('../../dist/topojson/usa_110m'),
12+
world_110m: require('../../dist/topojson/world_110m.json'),
13+
africa_50m: require('../../dist/topojson/africa_50m.json'),
14+
antarctica_50m: require('../../dist/topojson/antarctica_50m.json'),
15+
asia_50m: require('../../dist/topojson/asia_50m.json'),
16+
europe_50m: require('../../dist/topojson/europe_50m.json'),
17+
'north-america_50m': require('../../dist/topojson/north-america_50m.json'),
18+
oceania_50m: require('../../dist/topojson/oceania_50m.json'),
19+
'south-america_50m': require('../../dist/topojson/south-america_50m.json'),
20+
usa_50m: require('../../dist/topojson/usa_50m.json'),
21+
world_50m: require('../../dist/topojson/world_50m.json'),
22+
}
423

5-
6-
exports.version = require('../version').version;
7-
8-
exports.topojson = saneTopojson;
24+
module.exports = {
25+
topojson,
26+
version: require('../version').version
27+
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.