ThinkGeo.com    |     Documentation    |     Premium Support

Map Tiling

Hi,


My colleage came across a webpage that looks to us that it displays a map in the following way:


The size of the display looks 5 tiles wide X 4 tiles height.  It seems its mechanism gets map for extra tiles.  It looks to us that that map for 7X6 tiles were actually gotten while the center 5X4 tiles are displayed.  We have to drag the map for about more than one tile size in any direction to see blank area before map fills up the blank tiles.  If we drag within a tile size, the map seems always available.


Can the web edition be configured to do such. 


Thanks,


Tracy



Hi Tracy, 
  
 I guess your requirement is that you don’t want to request the tiles whose extent is out of max extent; if there is no misunderstanding, it can be achieved by rewrite the following client code, please have a try; 
  
 var OnMapCreating = function(map) { 
             Class.Extent(WmsOverlay.prototype, { 
                 createWms: function() { 
                     this.options.displayOutsideMaxExtent = false; // Here is what you need to satisfy your requirement 
                     this.element = new OpenLayers.Layer.WMS(this.name, this.url, this.params, this.options); 
                     this.element.id = this.id; 
                 } 
             }) 
         };  
  
 Please provide us more information and let me know if there is any misunderstanding. 
  
 Thanks, 
 Howard