summaryrefslogtreecommitdiff
path: root/src/mbgl/style/types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/types.hpp')
-rw-r--r--src/mbgl/style/types.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mbgl/style/types.hpp b/src/mbgl/style/types.hpp
index 78938a2823..3b24d63998 100644
--- a/src/mbgl/style/types.hpp
+++ b/src/mbgl/style/types.hpp
@@ -48,7 +48,8 @@ enum class SourceType : uint8_t {
Vector,
Raster,
GeoJSON,
- Video
+ Video,
+ Annotations
};
MBGL_DEFINE_ENUM_CLASS(SourceTypeClass, SourceType, {
@@ -56,6 +57,7 @@ MBGL_DEFINE_ENUM_CLASS(SourceTypeClass, SourceType, {
{ SourceType::Raster, "raster" },
{ SourceType::GeoJSON, "geojson" },
{ SourceType::Video, "video" },
+ { SourceType::Annotations, "annotations" },
});
// -------------------------------------------------------------------------------------------------