Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/map/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@

// Fetch the EMSL MONet JSON (not CSV) file and create a marker for each element of its top-level array.
const monetResponse = await fetch(
`${baseUrlForData}/emsl/latlon_project_ids.json`,
`${baseUrlForData}/emsl/map/latlon_project_ids.json`,
);
const monetObjs = await monetResponse.json();
const monetMarkers = [];
Expand All @@ -352,7 +352,7 @@

// Fetch the EMSL JSON (not CSV) file and create a marker for each element of its top-level array.
const response = await fetch(
`${baseUrlForData}/emsl/all_emsl_samples.json`,
`${baseUrlForData}/emsl/map/all_emsl_samples.json`,
);
const emslObjs = await response.json();
const emslMarkers = [];
Expand Down