summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@ffgraz.net>2008-12-05 22:40:24 +0000
committerChristian Pointner <equinox@ffgraz.net>2008-12-05 22:40:24 +0000
commit2ad233be830b0d6381e5c9019560733f57893b9d (patch)
tree6a9ae472d7f32cb07ae7798af5a96d710e953d51
parent5a7622c8ca7d2858d722a402fbddc4a2949a832d (diff)
fixed ruler layer which hides control buttons
-rw-r--r--map.css4
-rw-r--r--map.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/map.css b/map.css
index 78c8eef..3299610 100644
--- a/map.css
+++ b/map.css
@@ -39,8 +39,8 @@ div.box {
}
#distboxouter {
- position: fixed;
- width: 99%;
+ position: absolute;
+ width: 100%;
top: 10px;
background: none;
text-align: center;
diff --git a/map.js b/map.js
index 7964726..b580b84 100644
--- a/map.js
+++ b/map.js
@@ -25,9 +25,9 @@ function initialize(lat, lng, res) {
map.setMapType(G_NORMAL_MAP);
map.setZoom(res);
}
+ map.addControl(new RulerControl());
map.addControl(new GSmallMapControl(), new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(10,20)));
map.addControl(new GMapTypeControl(), new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(50,10)));
- map.addControl(new RulerControl());
GEvent.addListener(map, "addoverlay", onAddOverlay);
GEvent.addListener(map, "zoomend", onZoom);