GUI - Added bay area topojson.

Change-Id: I19e103e09e48a09900240b671b05ceba4970c058
diff --git a/web/gui/src/main/webapp/app/view/topo/topo.js b/web/gui/src/main/webapp/app/view/topo/topo.js
index dbd5e0c..60d4340 100644
--- a/web/gui/src/main/webapp/app/view/topo/topo.js
+++ b/web/gui/src/main/webapp/app/view/topo/topo.js
@@ -357,12 +357,14 @@
         mapG = zoomLayer.append('g').attr('id', 'topo-map');
         if (mapId === 'usa') {
             promise = ms.loadMapInto(mapG, '*continental_us');
+        } else if (mapId === 'bayarea') {
+            promise = ms.loadMapInto(mapG, '*bayarea', {objectTag: 'bayareaGEO'});
         } else {
-            ps.setPrefs('topo_mapid', {id:mapId});
             cfilter = countryFilters[mapId] || countryFilters.world;
             opts = { countryFilter: cfilter };
             promise = ms.loadMapRegionInto(mapG, opts);
         }
+        ps.setPrefs('topo_mapid', {id:mapId});
         return promise;
     }