Adding another option

This commit is contained in:
ahocevar
2013-05-16 15:14:38 +02:00
parent 1929403cda
commit cde4ef435c
2 changed files with 3 additions and 0 deletions

View File

@@ -303,6 +303,7 @@
* KML? Default is `false`.
* @property {number|undefined} maxDepth Maximum depth to follow network links.
* Default is 0, which means we don't follow network links at all.
* @property {Array.<string>} trackAttributes Track attributes to parse.
*/
/**

View File

@@ -54,6 +54,8 @@ ol.parser.KML = function(opt_options) {
// TODO re-evaluate once shared structures support 3D
this.dimension = goog.isDef(options.dimension) ? options.dimension : 3;
this.maxDepth = goog.isDef(options.maxDepth) ? options.maxDepth : 0;
this.trackAttributes = goog.isDef(options.trackAttributes) ?
options.trackAttributes : null;
this.defaultNamespaceURI = 'http://www.opengis.net/kml/2.2';
this.readers = {