Skip to content

Commit 6b30e6c

Browse files
authored
Update README.md
1 parent b1cbf7d commit 6b30e6c

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

README.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ I have created the example for bublble map for three countries. India, USA and C
88

99
![india bubble map](https://github.com/Anujarya300/bubble_maps/blob/master/images/india.jpg)
1010

11-
#### Set the correct projection for India map on world map with the help of Longitude and Latitute of India (you can google it India Longitude and Latitute)
12-
Please use **india.toto.json** for India geopraphy json data from https://github.com/Anujarya300/bubble_maps/blob/master/data/geography-data/india.topo.json, otherwise your map wont work. (I have truncated IND. from all state ISO code(2-digit ISO code), e.g IND.JH for Jharkhand state truncated to JH)  
1311
```
1412
var bubble_map = new Datamap({
1513
element: document.getElementById('india'),
@@ -19,7 +17,7 @@ Please use **india.toto.json** for India geopraphy json data from https://github
1917
highlightOnHover: true,
2018
borderColor: '#444',
2119
borderWidth: 0.5,
22-
dataUrl: './data/geography-data/india.topo.json'
20+
dataUrl: 'https://rawgit.com/Anujarya300/bubble_maps/master/data/geography-data/india.topo.json'
2321
//dataJson: topoJsonData
2422
},
2523
fills: {
@@ -42,15 +40,16 @@ Please use **india.toto.json** for India geopraphy json data from https://github
4240
});
4341
```
4442

43+
###### Set the correct projection for India map on world map with the help of Longitude and Latitute of India (you can google it India Longitude and Latitute)
44+
Please use **india.toto.json** for India geopraphy json data from https://github.com/Anujarya300/bubble_maps/blob/master/data/geography-data/india.topo.json, otherwise your map wont work. (I have truncated IND. from all state ISO code(2-digit ISO code), e.g IND.JH for Jharkhand state truncated to JH)  
45+
4546
Please note in setProjection method, I have set [78.9629, 23.5937] to locate center point for India in the world map. That means
4647
Latitude = 78.9629 E and Longitude = 23.5937 N. Remember Latitute and Longitude are always East and North. For western countries, Latitude are in West so make it convert as Negative of East. e.g 102.3421 W ==> -102.3421 E.
4748

4849
### 2. Bubble map on Canada Geographical region
4950

5051
![canada bubble map](https://github.com/Anujarya300/bubble_maps/blob/master/images/canada.jpg)
5152

52-
Please use **canada.toto.json** for India geopraphy json data from https://github.com/Anujarya300/bubble_maps/blob/master/data/geography-data/canada.topo.json, otherwise your map wont work. (I have truncated CA. from all state ISO code(2-digit ISO code), e.g CA.TN to TN)
53-
5453
```
5554
var bubble_map = new Datamap({
5655
element: document.getElementById('canada'),
@@ -60,7 +59,7 @@ var bubble_map = new Datamap({
6059
highlightOnHover: true,
6160
borderColor: '#444',
6261
borderWidth: 0.5,
63-
dataUrl: './data/geography-data/canada.topo.json'
62+
dataUrl: 'https://rawgit.com/Anujarya300/bubble_maps/master/data/geography-data/canada.topo.json'
6463
//dataJson: topoJsonData
6564
},
6665
fills: {
@@ -84,6 +83,10 @@ var bubble_map = new Datamap({
8483
}
8584
});
8685
```
86+
87+
###### Set the correct projection for Canada map on world map with the help of Longitude and Latitute of Canada (you can google it Canada Longitude and Latitute)
88+
89+
Please use **canada.toto.json** for India geopraphy json data from https://github.com/Anujarya300/bubble_maps/blob/master/data/geography-data/canada.topo.json, otherwise your map wont work. (I have truncated CA. from all state ISO code(2-digit ISO code), e.g CA.TN to TN)
8790

8891
Please note in setProjection method, I have set [-106.3468, 68.1304] to locate center point for Canada in the world map. That means
8992
Latitude = 106.3468 W and Longitude = 68.1304 N. Remember Latitute and Longitude are always East and North. For western countries, Latitude are in West so make it convert as Negative of East. e.g 102.3421 W ==> -102.3421 E.
@@ -96,8 +99,6 @@ e.g, if your map is not showing full view of North then you can change 68.1304 N
9699

97100
![usa bubble map](https://github.com/Anujarya300/bubble_maps/blob/master/images/usa.jpg)
98101

99-
Here in the case of USA, you do not need to change the anything on usa.topo.json, since its cities are already in 2-digit ISO code.
100-
usa.totp.json: https://github.com/Anujarya300/bubble_maps/blob/master/data/geography-data/usa.topo.json
101102
```
102103
var bubble_map = new Datamap({
103104
element: document.getElementById('usa'),
@@ -107,7 +108,7 @@ var bubble_map = new Datamap({
107108
highlightOnHover: true,
108109
borderColor: '#444',
109110
borderWidth: 0.5,
110-
dataUrl: './data/geography-data/usa.topo.json'
111+
dataUrl: 'https://rawgit.com/Anujarya300/bubble_maps/master/data/geography-data/usa.topo.json'
111112
//dataJson: topoJsonData
112113
},
113114
fills: {
@@ -122,7 +123,10 @@ var bubble_map = new Datamap({
122123
}
123124
});
124125
```
125-
126+
127+
Here in the case of USA, you do not need to change the anything on usa.topo.json, since its cities are already in 2-digit ISO code.
128+
usa.totp.json: https://github.com/Anujarya300/bubble_maps/blob/master/data/geography-data/usa.topo.json
129+
126130
You do not have to worry about USA map region since d3 already hadled it.
127131

128132
## If you need to add some other countries map say country {xyz} other than India, Canada, USA. You need to do the folowing:

0 commit comments

Comments
 (0)