OpenLayers OpenLayers

Changeset 1364

Show
Ignore:
Timestamp:
08/24/06 19:42:32 (2 years ago)
Author:
crschmidt
Message:

Change multimap zooms so that they match Google and VE. this means that
switching back and forth between the three of them shows the same map area.
Nifty.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/crschmidt/multimap/lib/OpenLayers/Layer/MultiMap.js

    r1362 r1364  
    238238     */ 
    239239    getOLZoomFromMMZoom: function(mmZoom) { 
    240         return mmZoom
     240        return mmZoom - 1
    241241    }, 
    242242     
     
    249249     */ 
    250250    getMMZoomFromOLZoom: function(olZoom) { 
    251         return olZoom
     251        return olZoom + 1
    252252    }, 
    253253