@@ -38,10 +38,9 @@ $root.vector_tile = (function() {
3838
3939 /**
4040 * Tile layers.
41- * @name vector_tile.Tile#layers
4241 * @type {Array.<vector_tile.Tile.Layer> }
4342 */
44- $prototype [ " layers" ] = $protobuf . util . emptyArray ;
43+ $prototype . layers = $protobuf . util . emptyArray ;
4544
4645 /**
4746 * Creates a new Tile instance using the specified properties.
@@ -185,52 +184,45 @@ $root.vector_tile = (function() {
185184
186185 /**
187186 * Value stringValue.
188- * @name vector_tile.Tile.Value#stringValue
189187 * @type {string }
190188 */
191- $prototype [ " stringValue" ] = "" ;
189+ $prototype . stringValue = "" ;
192190
193191 /**
194192 * Value floatValue.
195- * @name vector_tile.Tile.Value#floatValue
196193 * @type {number }
197194 */
198- $prototype [ " floatValue" ] = 0 ;
195+ $prototype . floatValue = 0 ;
199196
200197 /**
201198 * Value doubleValue.
202- * @name vector_tile.Tile.Value#doubleValue
203199 * @type {number }
204200 */
205- $prototype [ " doubleValue" ] = 0 ;
201+ $prototype . doubleValue = 0 ;
206202
207203 /**
208204 * Value intValue.
209- * @name vector_tile.Tile.Value#intValue
210205 * @type {number|Long }
211206 */
212- $prototype [ " intValue" ] = $protobuf . util . emptyObject ;
207+ $prototype . intValue = $protobuf . util . emptyObject ;
213208
214209 /**
215210 * Value uintValue.
216- * @name vector_tile.Tile.Value#uintValue
217211 * @type {number|Long }
218212 */
219- $prototype [ " uintValue" ] = $protobuf . util . emptyObject ;
213+ $prototype . uintValue = $protobuf . util . emptyObject ;
220214
221215 /**
222216 * Value sintValue.
223- * @name vector_tile.Tile.Value#sintValue
224217 * @type {number|Long }
225218 */
226- $prototype [ " sintValue" ] = $protobuf . util . emptyObject ;
219+ $prototype . sintValue = $protobuf . util . emptyObject ;
227220
228221 /**
229222 * Value boolValue.
230- * @name vector_tile.Tile.Value#boolValue
231223 * @type {boolean }
232224 */
233- $prototype [ " boolValue" ] = false ;
225+ $prototype . boolValue = false ;
234226
235227 /**
236228 * Creates a new Value instance using the specified properties.
@@ -411,31 +403,27 @@ $root.vector_tile = (function() {
411403
412404 /**
413405 * Feature id.
414- * @name vector_tile.Tile.Feature#id
415406 * @type {number|Long }
416407 */
417- $prototype [ "id" ] = $protobuf . util . emptyObject ;
408+ $prototype . id = $protobuf . util . emptyObject ;
418409
419410 /**
420411 * Feature tags.
421- * @name vector_tile.Tile.Feature#tags
422412 * @type {Array.<number> }
423413 */
424- $prototype [ " tags" ] = $protobuf . util . emptyArray ;
414+ $prototype . tags = $protobuf . util . emptyArray ;
425415
426416 /**
427417 * Feature type.
428- * @name vector_tile.Tile.Feature#type
429418 * @type {number }
430419 */
431- $prototype [ " type" ] = "UNKNOWN" ;
420+ $prototype . type = "UNKNOWN" ;
432421
433422 /**
434423 * Feature geometry.
435- * @name vector_tile.Tile.Feature#geometry
436424 * @type {Array.<number> }
437425 */
438- $prototype [ " geometry" ] = $protobuf . util . emptyArray ;
426+ $prototype . geometry = $protobuf . util . emptyArray ;
439427
440428 /**
441429 * Creates a new Feature instance using the specified properties.
@@ -624,45 +612,39 @@ $root.vector_tile = (function() {
624612
625613 /**
626614 * Layer version.
627- * @name vector_tile.Tile.Layer#version
628615 * @type {number }
629616 */
630- $prototype [ " version" ] = 1 ;
617+ $prototype . version = 1 ;
631618
632619 /**
633620 * Layer name.
634- * @name vector_tile.Tile.Layer#name
635621 * @type {string }
636622 */
637- $prototype [ " name" ] = "" ;
623+ $prototype . name = "" ;
638624
639625 /**
640626 * Layer features.
641- * @name vector_tile.Tile.Layer#features
642627 * @type {Array.<vector_tile.Tile.Feature> }
643628 */
644- $prototype [ " features" ] = $protobuf . util . emptyArray ;
629+ $prototype . features = $protobuf . util . emptyArray ;
645630
646631 /**
647632 * Layer keys.
648- * @name vector_tile.Tile.Layer#keys
649633 * @type {Array.<string> }
650634 */
651- $prototype [ " keys" ] = $protobuf . util . emptyArray ;
635+ $prototype . keys = $protobuf . util . emptyArray ;
652636
653637 /**
654638 * Layer values.
655- * @name vector_tile.Tile.Layer#values
656639 * @type {Array.<vector_tile.Tile.Value> }
657640 */
658- $prototype [ " values" ] = $protobuf . util . emptyArray ;
641+ $prototype . values = $protobuf . util . emptyArray ;
659642
660643 /**
661644 * Layer extent.
662- * @name vector_tile.Tile.Layer#extent
663645 * @type {number }
664646 */
665- $prototype [ " extent" ] = 4096 ;
647+ $prototype . extent = 4096 ;
666648
667649 /**
668650 * Creates a new Layer instance using the specified properties.
0 commit comments