/* Copyright (c) 2006-2012 by OpenLayers Contributors (see authors.txt for * full list of contributors). Published under the Clear BSD license. * See http://svn.openlayers.org/trunk/openlayers/license.txt for the * full text of the license. */ /** * @requires OpenLayers/Control.js * @requires OpenLayers/Handler/Hover.js * @requires OpenLayers/Handler/Click.js */ /** * Class: OpenLayers.Control.UTFGrid * The UTFGrid control displays .... * pointer, as it is moved about the map. * * Inherits from: * - */ OpenLayers.Control.UTFGrid = OpenLayers.Class(OpenLayers.Control, { /** * APIProperty: autoActivate * {Boolean} Activate the control when it is added to a map. Default is * true. */ autoActivate: true, /** * Property: element * {DOMElement} */ element: null, debugElement: null, /** * Property: lastXy * {} */ lastXy: null, /** * Constructor: OpenLayers.Control.UTFGrid * Parameters: * options - {Object} Options for control. */ defaultHandlerOptions: { 'delay': 200, 'pixelTolerance': null, 'stopMove': false, 'single': true, 'double': false, 'pixelTolerance': 0, 'stopSingle': false, 'stopDouble': false }, /* Property: handlerMode * Defaults to 'click'. Can be 'hover' or 'move'. */ handlerMode: 'hover', setHandler: function(hm) { this.handlerMode = hm; this.resetHandler(); }, resetHandler: function() { if (this.handler) { this.handler.deactivate(); this.handler.destroy(); this.handler = null; } if (this.handlerMode == 'hover') { // Handle this event on hover this.handler = new OpenLayers.Handler.Hover( this, {'pause': this.handleEvent, 'move': this.reset}, this.handlerOptions ); } else if (this.handlerMode == 'click') { // Handle this event on click this.handler = new OpenLayers.Handler.Click( this, { 'click': this.handleEvent }, this.handlerOptions ); } else if (this.handlerMode == 'move') { this.handler = new OpenLayers.Handler.Hover( this, // Handle this event while hovering OR moving {'pause': this.handleEvent, 'move': this.handleEvent}, this.handlerOptions ); } if (this.handler) { return true; } else { return false; } }, /** * Constructor: * * Parameters: * options - {Object} */ initialize: function(options) { options = options || {}; options.handlerOptions = options.handlerOptions || {}; OpenLayers.Control.prototype.initialize.apply(this, [options]); console.log(this); if (options.div) { this.element = OpenLayers.Util.getElement(options.div); } this.resetHandler(); }, /** * Method: handleEvent */ handleEvent: function(evt) { var lonLat; if (evt == null) { this.reset(); return; } else { if (this.lastXy == null || Math.abs(evt.xy.x - this.lastXy.x) > this.granularity || Math.abs(evt.xy.y - this.lastXy.y) > this.granularity) { this.lastXy = evt.xy; return; } lonLat = this.map.getLonLatFromPixel(evt.xy); if (!lonLat) { // map may not have been properly initialized return; } this.lastXy = evt.xy; } var layers = this.findLayers(); if (layers.length > 0) { var layer; for (var i=0, len=layers.length; i"; debug += "
  • j :" + info.j + "
  • "; debug += "
  • globalrow :" + info.globalRow + "
  • "; debug += "
  • globalcol :" + info.globalCol + "
  • "; debug += "
  • gridrow :" + info.gridRow + "
  • "; debug += "
  • gridcol :" + info.gridCol + "
  • "; debug += "
  • gridrow offset :" + info.gridRowOffset + "
  • "; debug += "
  • gridcol offset :" + info.gridColOffset + "
  • "; debug += ""; if (this.debugElement) { this.debugElement.innerHTML = debug; } }, /** * Method: callback * Takes the attrs and does somethings with them * this is a default (intended to be overridden) */ callback: function(attrs) { if (attrs !== null && typeof(attrs) !== 'undefined') { val = "

    Attributes

      "; for(var index in attrs) { val += "
    • " + index + " : " + attrs[index] + "
    • "; } val += "
    "; this.element.innerHTML = val; return true; } else { this.element.innerHTML = ''; return false; } }, /** * Method: resolveCode * Resolve the UTF-8 encoding stored in grids to simple * number values. * See the [utfgrid section of the mbtiles spec](https://github.com/mapbox/mbtiles-spec/blob/master/1.1/utfgrid.md) * for details. */ resolveCode: function(key) { if (key >= 93) key--; if (key >= 35) key--; key -= 32; return key; }, /** * Method: reset */ reset: function(evt) { this.callback(null); if (this.element) this.element.innerHTML = ''; }, /** * Method: findLayers * Internal method to get the layers, independent of whether we are * inspecting the map or using a client-provided array * MP TODO respect list of user-supplied candidates */ findLayers: function() { var candidates = this.layers || this.map.layers; var layers = []; var layer; for (var i=candidates.length-1; i>=0; --i) { layer = candidates[i]; if (layer instanceof OpenLayers.Layer.UTFGrid ) { layers.push(layer); } } return layers; }, CLASS_NAME: "OpenLayers.Control.UTFGrid" });