diff --git a/javascript/pointMap.js b/javascript/pointMap.js
index 25060984b560da03ff26ae66014eb49b0cf1752d..710dc4a2f2f66cadce04ec556ce98f66ba702004 100644
--- a/javascript/pointMap.js
+++ b/javascript/pointMap.js
@@ -39,7 +39,7 @@ var NTNU_points_2 = {
 
 var NTNU_points = L.geoJSON(null);
 
-fetch("javascript/exampleData/Arealdekke_klippa.geojson").then(function(response) {
+fetch("javascript/exampleData/NTNU_points.geojson").then(function(response) {
     return response.json();
 }).then(function(data) {
     NTNU_points.addData(data).bindPopup(function(point) {return `<b>${point.feature.properties.category}</b><br>${point.feature.properties.name}`});