We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ca414c commit e57c78dCopy full SHA for e57c78d
src/lib/Map.svelte
@@ -5,7 +5,6 @@
5
import { createEventDispatcher } from "svelte";
6
7
const basePath = import.meta.env.BASE_URL;
8
- console.log("basePath", basePath);
9
10
// Props
11
export let markers = [];
src/lib/geodata.js
@@ -101,6 +101,7 @@ function parseCsv(csvText) {
101
const lines = csvText.trim().split('\n');
102
103
const headers = lines[0].split('\t').map(h => h.trim());
104
+ console.log("headers", headers);
105
106
// Pre-allocate array for better performance
107
const rows = new Array(lines.length - 1);
0 commit comments