Use strings rather than RegExps in replace

This commit is contained in:
Tom Payne
2012-07-27 20:15:03 +02:00
parent 215d1ec8db
commit caf67ac5ba

View File

@@ -20,9 +20,9 @@ ol.TileUrlFunction.createFromTemplate = function(template) {
if (goog.isNull(tileCoord)) {
return undefined;
} else {
return template.replace(/\{z\}/, tileCoord.z)
.replace(/\{x\}/, tileCoord.x)
.replace(/\{y\}/, tileCoord.y);
return template.replace('{z}', tileCoord.z)
.replace('{x}', tileCoord.x)
.replace('{y}', tileCoord.y);
}
};
};