diff --git a/src/components/UserMap.js b/src/components/UserMap.js
index b79dfc25d30f695adf6aee96e9361837944146bc..052133ff11e4b65cbda0397c9b0795e9d42f1590 100644
--- a/src/components/UserMap.js
+++ b/src/components/UserMap.js
@@ -29,7 +29,7 @@ class UserMap extends Component {
   }
   // Sends the players drawings to the backend (and database)
   sendGeoJSON(layerToDatabase) {
-    fetch("http://localhost:5000/mapmarkers/insert-location", {
+    fetch("http://localhost:5000/draw/mapdrawing/insert-location", {
       method: "PUT",
       headers: {
         Authorization: "Bearer " + sessionStorage.getItem("token"),
@@ -45,7 +45,7 @@ class UserMap extends Component {
   }
   // Get the drawings from the backend and add them to the state, so they can be drawn
   fetchGeoJSON() {
-    fetch("http://localhost:5000/mapmarkers/getall", {
+    fetch("http://localhost:5000/draw/mapdrawing/insert-location", {
       method: "GET",
       headers: {
         Authorization: "Bearer " + sessionStorage.getItem("token"),
@@ -55,6 +55,7 @@ class UserMap extends Component {
     })
       .then(res => res.json())
       .then(data => {
+        console.log(data);
         let newFeatures = [];
         data.map(item => {
           newFeatures.push([item.id, item.features]);
diff --git a/src/icons/color-icon-2.png b/src/icons/color-icon-2.png
new file mode 100644
index 0000000000000000000000000000000000000000..6623db24a39f19eb6f46f539c0eb3d7a0e9620bf
Binary files /dev/null and b/src/icons/color-icon-2.png differ
diff --git a/src/icons/color-icon.png b/src/icons/color-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..28e54479f3d7fbfecc52694f51a7c6d2dbec1a34
Binary files /dev/null and b/src/icons/color-icon.png differ