Team locations
The Sourcegraph team is distributed around the world!
Adding to the team locations map
Note: this is optional! If you elect to add your location to the map, follow the instructions below. However, it is not mandatory to add this to your bio.
Option 1
To add your own location:
- Copy the contents of
locations.geojson
- Paste it in geojson.io
- Click the map pin icon (looks like a google map location) on the right side of the map, and drop it in your location.
- Scroll to the bottom of the text that you pasted in, where your new pin will appear.
- In the
properties
section, add your name:"name": "<yourname>"
. The final result will look like:{ "type": "Feature", "properties": { "name": "<YOUR NAME>" }, "geometry": { "type": "Point", "coordinates": [ <LONGITUDE>, <LATITUDE> ] } }
- Copy the new JSON from the right side of the page with your updated info included, and use it to generate a PR for this file.
Option 2
- Use this site to get your city’s latitude and longitude coordinates.
- Edit the following bit of JSON to include your name and coordinates (be sure to put longitude first):
{ "type": "Feature", "properties": { "name": "<YOUR NAME>" }, "geometry": { "type": "Point", "coordinates": [ <LONGITUDE>, <LATITUDE> ] } }
- Edit this file. Paste in your JSON above the final two lines of the file, leaving the
] }
below what you pasted in. - Open a PR for the file and assign a teammate to review.