└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # [Svelte/Sapper community map](https://mindrones.github.io/svelte-sapper-community/) 2 | 3 | Map of the [Svelte](https://svelte.technology)/[Sapper](https://sapper.svelte.technology) community. 4 | 5 | ## How to add/remove yourself to the map 6 | 7 | If you want to add/remove yourself please edit [this csv](https://github.com/mindrones/svelte-sapper-community/blob/gh-pages/community.csv) and send a PR. 8 | 9 | Fields: 10 | - `name`: your real name (optional) 11 | - `nickname`: kinda mandatory as it appears as a label when hovering on markers 12 | - `lat`: mandatory 13 | - `lon`: mandatory 14 | - `url1`: url (example: https://twitter.com/mindrones) 15 | - `urltext1`: text for url1 (example: twitter) 16 | - `url2`: url 17 | - `urltext2`: text for url2 18 | 19 | For optional fields just use an empty string: for example if you don't want to use your real name, use: 20 | 21 | `,myNickname,0,0,http://twitter.com/myNickname,twitter,,` 22 | 23 | ## How to find your location 24 | 25 | You can use https://www.openstreetmap.org. 26 | 27 | Search for a location and/or navigate the map: you'll see that the URL contains a string like `#map=19/51.50464/-0.10426`: its format is `#map={zoom}/{lat}/{lon}`, so you can just copy the last two numbers. 28 | --------------------------------------------------------------------------------