Index: /trunk/BNC/src/map/map_gm.html
===================================================================
--- /trunk/BNC/src/map/map_gm.html	(revision 5305)
+++ /trunk/BNC/src/map/map_gm.html	(revision 5306)
@@ -16,8 +16,10 @@
       var zoom;
       var dotSize;
+      var dotColor;
       var traceIcon;
       
-      function initialize(lat, lon, mapWinSize) {
-        dotSize = mapWinSize;
+      function initialize(lat, lon, mapWinDotSize, mapWinDotColor) {
+        dotSize = mapWinDotSize;
+	dotColor = mapWinDotColor;
 	if (dotSize > 10) dotSize = 10;
 
@@ -39,10 +41,22 @@
                                                );
 
-        traceIcon = new google.maps.MarkerImage("qrc:///map/reddot.png",
+        if (dotColor == 1) {
+          traceIcon = new google.maps.MarkerImage("qrc:///map/reddot.png",
                                                 null, 
                                                 null,
                                                 new google.maps.Point(1, 1),
                                                 new google.maps.Size(dotSize, dotSize)
-                                               );
+						);
+	}
+  
+
+        if (dotColor == 2) {
+          traceIcon = new google.maps.MarkerImage("qrc:///map/yellowdot.png",
+                                                null, 
+                                                null,
+                                                new google.maps.Point(1, 1),
+                                                new google.maps.Size(dotSize, dotSize)
+						);
+	}
 
         marker = new google.maps.Marker({
