mirror of
https://github.com/CIMEngine/map.git
synced 2024-11-05 20:13:58 +03:00
fix: geoURL
This commit is contained in:
parent
52eadc5252
commit
b9d98ff090
1 changed files with 1 additions and 5 deletions
6
index.js
6
index.js
|
@ -94,8 +94,6 @@ window.onload = async () => {
|
|||
|
||||
let lasticocords;
|
||||
|
||||
loginfo("Getting geo data");
|
||||
let geo = await fetch(geoURL);
|
||||
loginfo("Getting country data");
|
||||
let coarray = await fetch(countryInfoUrl);
|
||||
coarray = await coarray.json();
|
||||
|
@ -103,11 +101,9 @@ window.onload = async () => {
|
|||
for (let i = 0; i < coarray.length; i++)
|
||||
countries[coarray[i].idc] = coarray[i];
|
||||
|
||||
let geojson = await geo.json();
|
||||
|
||||
movc.addSource("map-data", {
|
||||
type: "geojson",
|
||||
data: geojson,
|
||||
data: geoURL,
|
||||
});
|
||||
|
||||
movc.addLayer({
|
||||
|
|
Loading…
Reference in a new issue