diff --git a/scwx-qt/res/textures/images/location-marker.svg b/scwx-qt/res/textures/images/location-marker.svg
new file mode 100644
index 00000000..055c0bf0
--- /dev/null
+++ b/scwx-qt/res/textures/images/location-marker.svg
@@ -0,0 +1,9 @@
+
diff --git a/scwx-qt/scwx-qt.qrc b/scwx-qt/scwx-qt.qrc
index c9e00337..9ed5651a 100644
--- a/scwx-qt/scwx-qt.qrc
+++ b/scwx-qt/scwx-qt.qrc
@@ -75,6 +75,7 @@
res/textures/images/cursor-17.png
res/textures/images/crosshairs-24.png
res/textures/images/dot-3.png
+ res/textures/images/location-marker.svg
res/textures/images/mapbox-logo.svg
res/textures/images/maptiler-logo.svg
diff --git a/scwx-qt/source/scwx/qt/map/marker_layer.cpp b/scwx-qt/source/scwx/qt/map/marker_layer.cpp
index 545b6c32..5e8b6c61 100644
--- a/scwx-qt/source/scwx/qt/map/marker_layer.cpp
+++ b/scwx-qt/source/scwx/qt/map/marker_layer.cpp
@@ -30,7 +30,7 @@ public:
MarkerLayer* self_;
const std::string& markerIconName_ {
- types::GetTextureName(types::ImageTexture::Cursor17)};
+ types::GetTextureName(types::ImageTexture::LocationMarker)};
std::shared_ptr geoIcons_;
};
diff --git a/scwx-qt/source/scwx/qt/types/texture_types.cpp b/scwx-qt/source/scwx/qt/types/texture_types.cpp
index 5f7da52b..7f0c7a24 100644
--- a/scwx-qt/source/scwx/qt/types/texture_types.cpp
+++ b/scwx-qt/source/scwx/qt/types/texture_types.cpp
@@ -25,6 +25,8 @@ static const std::unordered_map imageTextureInfo_ {
{ImageTexture::Cursor17,
{"images/cursor-17", ":/res/textures/images/cursor-17.png"}},
{ImageTexture::Dot3, {"images/dot-3", ":/res/textures/images/dot-3.png"}},
+ {ImageTexture::LocationMarker,
+ {"images/location-marker", ":/res/textures/images/location-marker.svg"}},
{ImageTexture::MapboxLogo,
{"images/mapbox-logo", ":/res/textures/images/mapbox-logo.svg"}},
{ImageTexture::MapTilerLogo,
diff --git a/scwx-qt/source/scwx/qt/types/texture_types.hpp b/scwx-qt/source/scwx/qt/types/texture_types.hpp
index 593d574d..307a7638 100644
--- a/scwx-qt/source/scwx/qt/types/texture_types.hpp
+++ b/scwx-qt/source/scwx/qt/types/texture_types.hpp
@@ -18,6 +18,7 @@ enum class ImageTexture
Crosshairs24,
Cursor17,
Dot3,
+ LocationMarker,
MapboxLogo,
MapTilerLogo
};