Link Search Menu Expand Document

Add data to your map

You can add three feature types to your map: points, lines and polygons. Here is how.


As a mapmaker, once you have a map, an easy way to add data to it is from + > Feature in the menu.

campaign-form

First you enter the name of the feature, then select the map you want to add it to.

In the Geometry section, you set the shape and location. You have more options for doing that:

campaign-form

  • you can draw on the map directly,
  • specify a geosjon in the embedded editor,
  • or upload a file that describes the shape and location(json, geojson and gpx file formats are supported).

Let’s see how to use each option.

How to add features
  1. Draw on the map
    1. Add points
    2. Add lines
    3. Add polygons
  2. Paste geosjon in the embedded editor

Draw on the map

If you choose the first option, drawing directly on the map, you have three further options depending on what you want to add: a point, a line, or a polygon.

campaign-form

Add points

Points can be used for adding sites, events or anything that can be marked as a single point on your map. To add a point, simply move the center of the map to the desired location. You can zoom in and out as needed to refine the location.

Add lines

Lines can be used to map routes on your map, like bike paths, walking trails, etc. To add a line, first select the create line option.

campaign-form

Next navigate on the map to where you want to start drawing your line. Zoom in to refine the location. Place the blue dot following your cursor to the starting point of the line and tap or click once. Then move the cursor to the next point of the line and tap/click again. Repeat this workflow until you have reached the end point of your line. To finish the line, simply tap/click once on the end point.

If you want it to follow a contour more precisely, now is the time to make adjustments to it. Tap/click on the line to select it (if it’s not already selected). As you move your cursor along the line, a blue dot will appear. Simply press and drag that blue dot where you want to refine the line shape.

In case you clicked outside the line and deselected it, don’t worry. You can put it in edit mode by tapping/clicking on the line.

Add polygons

Polygons can be used to add areas to your map, like green zones, boundaries, etc. To start, select the create polygon option.

campaign-form

Adding a polygon on the map is similar to adding a line, except that to finish drawing a polygon, you tap/click on its first point, so as to close it. Once it’s on the map, users can click anywhere in the area to see the site’s data window. This can sometimes get confusing, so use polygons - especially for boundaries - judiciously.

So let’s give it a go: navigate on the map to the location of the starting point of the polygon. Place the cursor there and tap/click to start drawing. Then tap/click again to where the second point of the polygon should be. And so on, until you reach the final point. Then, as mentioned, close the polygon by tapping/clicking on the first polygon point again. And you’re done!

You can still make adjustements to the polygon shape by following its contour with your cursor and pressing and dragging the blue dot where refinements are needed.

In case you deselected the polygon but want to edit it again, simply click or tap once inside the polygon to reselect it.

Paste geosjon in the embedded editor

Geojson is a text format used for representing geographical features. You can find out more about the format on its Wikipedia page.

If you already have data in this format that you would like to add to your map, or you prefer to type geojson data, the embedded geojson editor is a great option for you.

Here is an example of the text you can paste if you would would like to add a point:

{
  "type": "Point",
  "coordinates": [
    -18.842878733004184,
    64.81660904183903
  ]
}

Click on Save to save the location data.


Back to top