Rename _ol_source_TileArcGISRest_ to TileArcGISRest

This commit is contained in:
Tim Schaub
2018-01-08 15:48:40 -07:00
parent f855bc1562
commit 6261cb6997
3 changed files with 29 additions and 29 deletions

View File

@@ -24,7 +24,7 @@ import _ol_uri_ from '../uri.js';
* options.
* @api
*/
var _ol_source_TileArcGISRest_ = function(opt_options) {
var TileArcGISRest = function(opt_options) {
var options = opt_options || {};
@@ -57,14 +57,14 @@ var _ol_source_TileArcGISRest_ = function(opt_options) {
this.setKey(this.getKeyForParams_());
};
inherits(_ol_source_TileArcGISRest_, TileImage);
inherits(TileArcGISRest, TileImage);
/**
* @private
* @return {string} The key for the current params.
*/
_ol_source_TileArcGISRest_.prototype.getKeyForParams_ = function() {
TileArcGISRest.prototype.getKeyForParams_ = function() {
var i = 0;
var res = [];
for (var key in this.params_) {
@@ -80,7 +80,7 @@ _ol_source_TileArcGISRest_.prototype.getKeyForParams_ = function() {
* @return {Object} Params.
* @api
*/
_ol_source_TileArcGISRest_.prototype.getParams = function() {
TileArcGISRest.prototype.getParams = function() {
return this.params_;
};
@@ -95,7 +95,7 @@ _ol_source_TileArcGISRest_.prototype.getParams = function() {
* @return {string|undefined} Request URL.
* @private
*/
_ol_source_TileArcGISRest_.prototype.getRequestUrl_ = function(tileCoord, tileSize, tileExtent,
TileArcGISRest.prototype.getRequestUrl_ = function(tileCoord, tileSize, tileExtent,
pixelRatio, projection, params) {
var urls = this.urls;
@@ -132,7 +132,7 @@ _ol_source_TileArcGISRest_.prototype.getRequestUrl_ = function(tileCoord, tileSi
/**
* @inheritDoc
*/
_ol_source_TileArcGISRest_.prototype.getTilePixelRatio = function(pixelRatio) {
TileArcGISRest.prototype.getTilePixelRatio = function(pixelRatio) {
return /** @type {number} */ (pixelRatio);
};
@@ -140,7 +140,7 @@ _ol_source_TileArcGISRest_.prototype.getTilePixelRatio = function(pixelRatio) {
/**
* @inheritDoc
*/
_ol_source_TileArcGISRest_.prototype.fixedTileUrlFunction = function(tileCoord, pixelRatio, projection) {
TileArcGISRest.prototype.fixedTileUrlFunction = function(tileCoord, pixelRatio, projection) {
var tileGrid = this.getTileGrid();
if (!tileGrid) {
@@ -178,8 +178,8 @@ _ol_source_TileArcGISRest_.prototype.fixedTileUrlFunction = function(tileCoord,
* @param {Object} params Params.
* @api
*/
_ol_source_TileArcGISRest_.prototype.updateParams = function(params) {
TileArcGISRest.prototype.updateParams = function(params) {
_ol_obj_.assign(this.params_, params);
this.setKey(this.getKeyForParams_());
};
export default _ol_source_TileArcGISRest_;
export default TileArcGISRest;