Index: trunk/src/cptms/cptms_map_v55.html
===================================================================
--- trunk/src/cptms/cptms_map_v55.html	(revision 286)
+++ trunk/src/cptms/cptms_map_v55.html	(revision 291)
@@ -82,5 +82,6 @@
     // Dot colors used in traffic model to indicate free-flowing, slowed, and stopped traffic
     // and their associated zvalues so slower traffic dots are more visible.
-    var colorZvalues = {"lime":10,"yellow":20,"red":30};
+    // white means a disabled spot
+    var colorZvalues = {"white":5,"lime":10,"yellow":20,"red":30};
 
     // Build a solid colored icon to use instead of the classic pin
@@ -116,5 +117,4 @@
         map.data.setStyle(function(feature) 
         {
-            //console.log(feature.getId() + " " + feature.getGeometry().get());
             // Get the postmile id 
             var name = feature.getId();
@@ -152,5 +152,5 @@
     function calcDistanceFactor()
     {
-        // 15 is maximum zoom, the point at which no adjusment is needed
+        // 15 is maximum zoom, the point at which no adjustment is needed
         return (.0005*(15-map.getZoom()));  
     }
@@ -162,5 +162,4 @@
     function adjustCoords(adjAmount)
     {
-        //console.log("adjusting coordinates");
         // Adjust the NB points a slight amount
         map.data.forEach(function(feature)
@@ -195,5 +194,4 @@
             // set zIndex for slowed traffic to a higher value so they overlap
             currentFeature.setProperty("zIndex", colorZvalues[newColor]);
-            //console.log(target+" updated to "+newColor);
         }
      }
@@ -341,5 +339,4 @@
             // fetch how much the map is currently zoomed
             currentZoom = map.getZoom(); 
-            //console.log("Zoom changed to ",currentZoom);
             // only bother adjusting within this range
             if ((currentZoom <16) && (currentZoom>10))
