1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | /* Copyright (c) 2006-2010 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/Strategy.js */ /** * Class: OpenLayers.Strategy.Paging * Strategy for vector feature paging * * Inherits from: * - <OpenLayers.Strategy> */ OpenLayers.Strategy.Paging = OpenLayers.Class(OpenLayers.Strategy, { /** * Property: features * {Array(<OpenLayers.Feature.Vector>)} Cached features. */ features: null, /** * Property: length * {Integer} Number of features per page. Default is 10. */ length: 10, /** * Property: num * {Integer} The currently displayed page number. */ num: null, /** * Property: paging * {Boolean} The strategy is currently changing pages. */ paging: false, /** * Constructor: OpenLayers.Strategy.Paging * Create a new paging strategy. * * Parameters: * options - {Object} Optional object whose properties will be set on the * instance. */ initialize: function(options) { OpenLayers.Strategy.prototype.initialize.apply(this, [options]); }, /** * APIMethod: activate * Activate the strategy. Register any listeners, do appropriate setup. * * Returns: * {Boolean} The strategy was successfully activated. */ activate: function() { var activated = OpenLayers.Strategy.prototype.activate.call(this); if(activated) { this.layer.events.on({ "beforefeaturesadded": this.cacheFeatures, scope: this }); } return activated; }, /** * APIMethod: deactivate * Deactivate the strategy. Unregister any listeners, do appropriate * tear-down. * * Returns: * {Boolean} The strategy was successfully deactivated. */ deactivate: function() { var deactivated = OpenLayers.Strategy.prototype.deactivate.call(this); if(deactivated) { this.clearCache(); this.layer.events.un({ "beforefeaturesadded": this.cacheFeatures, scope: this }); } return deactivated; }, /** * Method: cacheFeatures * Cache features before they are added to the layer. * * Parameters: * event - {Object} The event that this was listening for. This will come * with a batch of features to be paged. */ cacheFeatures: function(event) { if(!this.paging) { this.clearCache(); this.features = event.features; this.pageNext(event); } }, /** * Method: clearCache * Clear out the cached features. This destroys features, assuming * nothing else has a reference. */ clearCache: function() { if(this.features) { for(var i=0; i<this.features.length; ++i) { this.features[i].destroy(); } } this.features = null; this.num = null; }, /** * APIMethod: pageCount * Get the total count of pages given the current cache of features. * * Returns: * {Integer} The page count. */ pageCount: function() { var numFeatures = this.features ? this.features.length : 0; return Math.ceil(numFeatures / this.length); }, /** * APIMethod: pageNum * Get the zero based page number. * * Returns: * {Integer} The current page number being displayed. */ pageNum: function() { return this.num; }, /** * APIMethod: pageLength * Gets or sets page length. * * Parameters: * newLength: {Integer} Optional length to be set. * * Returns: * {Integer} The length of a page (number of features per page). */ pageLength: function(newLength) { if(newLength && newLength > 0) { this.length = newLength; } return this.length; }, /** * APIMethod: pageNext * Display the next page of features. * * Returns: * {Boolean} A new page was displayed. */ pageNext: function(event) { var changed = false; if(this.features) { if(this.num === null) { this.num = -1; } var start = (this.num + 1) * this.length; changed = this.page(start, event); } return changed; }, /** * APIMethod: pagePrevious * Display the previous page of features. * * Returns: * {Boolean} A new page was displayed. */ pagePrevious: function() { var changed = false; if(this.features) { if(this.num === null) { this.num = this.pageCount(); } var start = (this.num - 1) * this.length; changed = this.page(start); } return changed; }, /** * Method: page * Display the page starting at the given index from the cache. * * Returns: * {Boolean} A new page was displayed. */ page: function(start, event) { var changed = false; if(this.features) { if(start >= 0 && start < this.features.length) { var num = Math.floor(start / this.length); if(num != this.num) { this.paging = true; var features = this.features.slice(start, start + this.length); this.layer.removeFeatures(this.layer.features); this.num = num; // modify the event if any if(event && event.features) { // this.was called by an event listener event.features = features; } else { // this was called directly on the strategy this.layer.addFeatures(features); } this.paging = false; changed = true; } } } return changed; }, CLASS_NAME: "OpenLayers.Strategy.Paging" }); |