There are a few options when it comes to adding new layers to your maps. First, you can create a new layer by uploading a dataset or map that you’ve acquired via an external source (WMS). If you’d like to add a custom point, line, or polygon to your map you must first start by creating an empty new layer.
You have successfully added a new layer to your map!
Change layer order
Simply hover your cursor over the map layer you’d like to move, then reorder the layers by dragging your selected layer through the layer stack.
Rename map layer
To rename a layer simply click on its existing layer title. A text field will appear; type your new layer name into this field and click SAVE.
Adjust layer visibility
Click the eye icon next to your map layer to toggle its visibility.
Delete map layer
Press the bin icon next to the layer you’d like to delete. A pop up window will appear to confirm your action. Finish deleting your layer by clicking the DELETE LAYER button.
Map styling is an essential part of customizing your geomarketing dashboards. A well-selected range of colors makes a big difference in how a viewer might interpret the data you’re presenting. Spotzi’s predefined map styling options allow users to effortlessly create attractive and insightful dashboards. You can also stylize custom maps in order to match your brand identity — or that of a client! Our interface allows you to customize markers, icons, logos, colours, and even your own CSS.
The “simple styling” option allows you to easily change the styling of all your map features at once. Our menu offers a number of different styling options; select the SIMPLE tab and choose one of the following:
Area
Marker
The range styling tool allows you to change the style of your map based on a numerical range. Select the RANGE tab and choose a column, then choose between the following options:
Area/Marker
Category styling allows you to change the styling of your map based on a certain value. This styling option is often used to categorize shops, business, or catchment areas.
Select the CATEGORY tab and choose the column that you want to base your styling on. Spotzi will automatically create a category for each unique value in the column you’ve selected. You can then choose between the following options:
Area
Marker
Spotzi’s custom styling option allows you to change your styling based on a custom range of numbers. Select the CUSTOM tab and choose the column that you’d like to base your styling range on. Press ADD ANOTHER to add an extra range. After selecting the ranges you can choose between the following options:
Area
Marker
The bubble styling option allows you to create points and size them based on a number range; this creates a visually insightful map with clearly defined high and low values. Select the RANGE tab and choose the column you’d like to base your ranges on. After selecting the column (your numeric field) you can choose between the following options:
Area/Marker
Click on any of your map’s features to launch that feature’s infowindow. These windows provide users with extra data or images pertaining to each feature. To edit an infowindow simply click on the corresponding data layer and select the EDIT INFOWINDOW option.
You may now do the following:
Map legends are essential when it comes to clarity and effective data visualization. You can add a legend to any Spotzi map in just a few simple steps:
A basemap is a graphical representation of the world, as well as its natural and cultural features; these include bodies of water, land topography, parks and conservation areas, points of interest, geopolitical borders, roads, streets, and occasionally buildings. Spotzi offers a variety of maps for use in any context — we can provide anything from simple border breakdowns to street-level detail in order to enhance your analytics while avoiding conflict with your data visualizations.
Simply press the basemap button on the left of your screen to select the basemap most suitable for your project.
Spotzi Street |
Spotzi Satellite |
Spotzi Hybrid |
Toner |
Toner Background |
Toner Lines |
Toner Lite |
Toner Hybrid |
Toner Terrain |
Watercolor |
Spotzi Dark |
Map labels offer quick access to extra details pertaining to your maps’ areas of interest. Follow the steps below to label points on your map.
Quick tip!
When placing a label on top of your point (offset = 0), make sure that the label overlap is TRUE. Otherwise your label will not be displayed.
CartoCSS is a styling language rooted in the application of rule blocks to platform elements. This styling language is commonly used within mapping platforms and offers users the most flexibility when it comes to map and marker styling. CartoCSS is not only flexible, but also forgiving and user-friendly; you can easily undo and redo changes to your CartoCSS editor and are immediately notified of any errors in your code.
/** simple visualization */
#world_administrative_divisions {
marker-fill-opacity: 0.9;
marker-line-color: #FFF;
marker-line-width: 1.5;
marker-line-opacity: 1;
marker-placement: point;
marker-type: ellipse;
marker-width: 10;
marker-fill: #FF6600;
marker-allow-overlap: true;
}
The code below shows you a CSS option to categorize the data within your maps. The idea behind this code is simple: Place the column name and its respective value (< > =) in between brackets while using numeric data.
/** simple visualization */
#my_data{
marker-fill-opacity: 0.9;
marker-line-color: #FFF;
marker-line-opacity: 1;
marker-placement: point;
marker-type: ellipse;
marker-allow-overlap: true;
}
#my_data [celsius >= 20.00] {
marker-fill: #FF5C00;
}
#my_data [celsius > 0] [celsius < 20.00] {
marker-fill: #5CA2D1;
}
#my_data [celsius = 0] {
marker-fill: #000000;
}
You can also categorize your data based on text by separating text fields using " ". See the example below:
#billboards [type="Premium Digital"] {
marker-fill: #136400;
}
#billboards [type="Spectacular"] {
marker-fill: #FF5C00;
}
#billboards [type="Dominations"] {
marker-fill: #FF5C00;
}
Setting a map to its optimal zoom level is essential when professionally displaying custom markers and locations. See the sample code below for an example of how this can be achieved:
/** simple visualization */
#nl_postal_2_digit [ zoom <=9] {
polygon-fill: #0F3B82;
polygon-opacity: 0;
line-color: #f84f40;
line-width: 1;
line-opacity: 1;
}
#nl_postal_2_digit::labels [zoom > 7] [zoom <= 9] {
text-name: [pc2];
text-face-name: "DejaVu Sans Book";
text-size: 10;
text-fill: #000;
text-halo-fill: #FFF;
text-halo-radius: 1;
text-dy: -10;
text-allow-overlap: true;
text-placement: point;
text-placement-type: dummy;
}