google-closure-compiler 20161024.3.0 → 20170409.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +327 -0
  2. package/compiler.jar +0 -0
  3. package/contrib/externs/angular-1.3-resource.js +6 -0
  4. package/contrib/externs/angular-1.3.js +4 -3
  5. package/contrib/externs/angular-1.4-resource.js +6 -0
  6. package/contrib/externs/angular-1.4.js +2 -2
  7. package/contrib/externs/angular-1.5-q_templated.js +19 -1
  8. package/contrib/externs/angular-1.5-resource.js +6 -0
  9. package/contrib/externs/angular-1.5.js +44 -9
  10. package/contrib/externs/angular-1.6-http-promise_templated.js +61 -0
  11. package/contrib/externs/angular-1.6-mocks.js +267 -0
  12. package/contrib/externs/angular-1.6-q_templated.js +194 -0
  13. package/contrib/externs/angular-1.6-resource.js +332 -0
  14. package/contrib/externs/{w3c_css.js → angular-1.6-test.js} +8 -6
  15. package/contrib/externs/angular-1.6.js +2646 -0
  16. package/contrib/externs/angular-cache-4.6.js +316 -0
  17. package/contrib/externs/angular-material-1.1.js +92 -33
  18. package/contrib/externs/angular-material.js +36 -5
  19. package/contrib/externs/chai-3.5.js +101 -2
  20. package/contrib/externs/chrome_extensions.js +267 -95
  21. package/contrib/externs/jasmine-2.0.js +23 -3
  22. package/contrib/externs/jquery-1.4.4.js +1 -1
  23. package/contrib/externs/jquery-1.5.js +1 -1
  24. package/contrib/externs/jquery-1.6.js +1 -1
  25. package/contrib/externs/jquery-3.0.js +2037 -0
  26. package/contrib/externs/jquery-3.1.js +2045 -0
  27. package/contrib/externs/maps/google_maps_api_v3.js +306 -263
  28. package/contrib/externs/maps/google_maps_api_v3_27.js +6732 -0
  29. package/contrib/externs/maps/google_maps_api_v3_28.js +6637 -0
  30. package/contrib/externs/maps/google_maps_api_v3_exp.js +41 -106
  31. package/contrib/externs/mocha-2.5.js +65 -14
  32. package/contrib/externs/polymer-1.0.js +43 -5
  33. package/contrib/externs/safari.js +58 -0
  34. package/contrib/externs/sinon-1.17.js +719 -10
  35. package/contrib/externs/sinon-chai-2.7.js +78 -0
  36. package/contrib/externs/w3c_eventsource.js +6 -17
  37. package/contrib/externs/web_component_tester-4.2.js +6 -0
  38. package/contrib/nodejs/crypto.js +6 -6
  39. package/lib/gulp/index.js +2 -2
  40. package/lib/node/closure-compiler.js +3 -1
  41. package/package.json +8 -9
  42. package/contrib/externs/jquery-1.3.2.externs.js +0 -714
  43. package/contrib/externs/w3c_gamepad.js +0 -91
  44. package/contrib/externs/w3c_midi.js +0 -293
  45. package/contrib/externs/w3c_pointer_events.js +0 -105
@@ -15,7 +15,7 @@
15
15
  */
16
16
 
17
17
  /**
18
- * @fileoverview Externs for the Google Maps v3.25 API.
18
+ * @fileoverview Externs for the Google Maps v3.27 API.
19
19
  * @see http://code.google.com/apis/maps/documentation/javascript/reference.html
20
20
  * @externs
21
21
  */
@@ -38,7 +38,7 @@ google.maps.Animation = {
38
38
  };
39
39
 
40
40
  /**
41
- * @interface
41
+ * @record
42
42
  */
43
43
  google.maps.Attribution = function() {};
44
44
 
@@ -167,7 +167,7 @@ google.maps.Circle.prototype.setRadius = function(radius) {};
167
167
  google.maps.Circle.prototype.setVisible = function(visible) {};
168
168
 
169
169
  /**
170
- * @interface
170
+ * @record
171
171
  */
172
172
  google.maps.CircleOptions = function() {};
173
173
 
@@ -267,10 +267,10 @@ google.maps.ControlPosition = {
267
267
  google.maps.Data = function(opt_options) {};
268
268
 
269
269
  /**
270
- * @param {google.maps.Data.Feature|google.maps.Data.FeatureOptions|Object.<string>} feature
270
+ * @param {(google.maps.Data.Feature|google.maps.Data.FeatureOptions|Object.<string>)=} opt_feature
271
271
  * @return {google.maps.Data.Feature}
272
272
  */
273
- google.maps.Data.prototype.add = function(feature) {};
273
+ google.maps.Data.prototype.add = function(opt_feature) {};
274
274
 
275
275
  /**
276
276
  * @param {Object} geoJson
@@ -391,7 +391,7 @@ google.maps.Data.prototype.setStyle = function(style) {};
391
391
  google.maps.Data.prototype.toGeoJson = function(callback) {};
392
392
 
393
393
  /**
394
- * @interface
394
+ * @record
395
395
  */
396
396
  google.maps.Data.AddFeatureEvent = function() {};
397
397
 
@@ -401,27 +401,27 @@ google.maps.Data.AddFeatureEvent = function() {};
401
401
  google.maps.Data.AddFeatureEvent.prototype.feature;
402
402
 
403
403
  /**
404
- * @interface
404
+ * @record
405
405
  */
406
406
  google.maps.Data.DataOptions = function() {};
407
407
 
408
408
  /**
409
- * @type {google.maps.ControlPosition}
409
+ * @type {google.maps.ControlPosition|undefined}
410
410
  */
411
411
  google.maps.Data.DataOptions.prototype.controlPosition;
412
412
 
413
413
  /**
414
- * @type {Array<string>}
414
+ * @type {Array<string>|undefined}
415
415
  */
416
416
  google.maps.Data.DataOptions.prototype.controls;
417
417
 
418
418
  /**
419
- * @type {string}
419
+ * @type {string|undefined}
420
420
  */
421
421
  google.maps.Data.DataOptions.prototype.drawingMode;
422
422
 
423
423
  /**
424
- * @type {function(google.maps.Data.Geometry): google.maps.Data.Feature}
424
+ * @type {(function(google.maps.Data.Geometry): google.maps.Data.Feature)|undefined}
425
425
  */
426
426
  google.maps.Data.DataOptions.prototype.featureFactory;
427
427
 
@@ -431,7 +431,7 @@ google.maps.Data.DataOptions.prototype.featureFactory;
431
431
  google.maps.Data.DataOptions.prototype.map;
432
432
 
433
433
  /**
434
- * @type {google.maps.Data.StylingFunction|google.maps.Data.StyleOptions|Object.<string>}
434
+ * @type {google.maps.Data.StylingFunction|google.maps.Data.StyleOptions|Object.<string>|undefined}
435
435
  */
436
436
  google.maps.Data.DataOptions.prototype.style;
437
437
 
@@ -491,27 +491,27 @@ google.maps.Data.Feature.prototype.setProperty = function(name, newValue) {};
491
491
  google.maps.Data.Feature.prototype.toGeoJson = function(callback) {};
492
492
 
493
493
  /**
494
- * @interface
494
+ * @record
495
495
  */
496
496
  google.maps.Data.FeatureOptions = function() {};
497
497
 
498
498
  /**
499
- * @type {google.maps.Data.Geometry|google.maps.LatLng|google.maps.LatLngLiteral}
499
+ * @type {google.maps.Data.Geometry|google.maps.LatLng|google.maps.LatLngLiteral|undefined}
500
500
  */
501
501
  google.maps.Data.FeatureOptions.prototype.geometry;
502
502
 
503
503
  /**
504
- * @type {number|string}
504
+ * @type {number|string|undefined}
505
505
  */
506
506
  google.maps.Data.FeatureOptions.prototype.id;
507
507
 
508
508
  /**
509
- * @type {Object}
509
+ * @type {Object|undefined}
510
510
  */
511
511
  google.maps.Data.FeatureOptions.prototype.properties;
512
512
 
513
513
  /**
514
- * @interface
514
+ * @record
515
515
  */
516
516
  google.maps.Data.GeoJsonOptions = function() {};
517
517
 
@@ -849,7 +849,7 @@ google.maps.Data.Polygon.prototype.getLength = function() {};
849
849
  google.maps.Data.Polygon.prototype.getType = function() {};
850
850
 
851
851
  /**
852
- * @interface
852
+ * @record
853
853
  */
854
854
  google.maps.Data.RemoveFeatureEvent = function() {};
855
855
 
@@ -859,7 +859,7 @@ google.maps.Data.RemoveFeatureEvent = function() {};
859
859
  google.maps.Data.RemoveFeatureEvent.prototype.feature;
860
860
 
861
861
  /**
862
- * @interface
862
+ * @record
863
863
  */
864
864
  google.maps.Data.RemovePropertyEvent = function() {};
865
865
 
@@ -879,7 +879,7 @@ google.maps.Data.RemovePropertyEvent.prototype.name;
879
879
  google.maps.Data.RemovePropertyEvent.prototype.oldValue;
880
880
 
881
881
  /**
882
- * @interface
882
+ * @record
883
883
  */
884
884
  google.maps.Data.SetGeometryEvent = function() {};
885
885
 
@@ -889,17 +889,17 @@ google.maps.Data.SetGeometryEvent = function() {};
889
889
  google.maps.Data.SetGeometryEvent.prototype.feature;
890
890
 
891
891
  /**
892
- * @type {google.maps.Data.Geometry}
892
+ * @type {google.maps.Data.Geometry|undefined}
893
893
  */
894
894
  google.maps.Data.SetGeometryEvent.prototype.newGeometry;
895
895
 
896
896
  /**
897
- * @type {google.maps.Data.Geometry}
897
+ * @type {google.maps.Data.Geometry|undefined}
898
898
  */
899
899
  google.maps.Data.SetGeometryEvent.prototype.oldGeometry;
900
900
 
901
901
  /**
902
- * @interface
902
+ * @record
903
903
  */
904
904
  google.maps.Data.SetPropertyEvent = function() {};
905
905
 
@@ -924,77 +924,77 @@ google.maps.Data.SetPropertyEvent.prototype.newValue;
924
924
  google.maps.Data.SetPropertyEvent.prototype.oldValue;
925
925
 
926
926
  /**
927
- * @interface
927
+ * @record
928
928
  */
929
929
  google.maps.Data.StyleOptions = function() {};
930
930
 
931
931
  /**
932
- * @type {boolean}
932
+ * @type {boolean|undefined}
933
933
  */
934
934
  google.maps.Data.StyleOptions.prototype.clickable;
935
935
 
936
936
  /**
937
- * @type {string}
937
+ * @type {string|undefined}
938
938
  */
939
939
  google.maps.Data.StyleOptions.prototype.cursor;
940
940
 
941
941
  /**
942
- * @type {boolean}
942
+ * @type {boolean|undefined}
943
943
  */
944
944
  google.maps.Data.StyleOptions.prototype.draggable;
945
945
 
946
946
  /**
947
- * @type {boolean}
947
+ * @type {boolean|undefined}
948
948
  */
949
949
  google.maps.Data.StyleOptions.prototype.editable;
950
950
 
951
951
  /**
952
- * @type {string}
952
+ * @type {string|undefined}
953
953
  */
954
954
  google.maps.Data.StyleOptions.prototype.fillColor;
955
955
 
956
956
  /**
957
- * @type {number}
957
+ * @type {number|undefined}
958
958
  */
959
959
  google.maps.Data.StyleOptions.prototype.fillOpacity;
960
960
 
961
961
  /**
962
- * @type {string|google.maps.Icon|google.maps.Symbol}
962
+ * @type {string|google.maps.Icon|google.maps.Symbol|undefined}
963
963
  */
964
964
  google.maps.Data.StyleOptions.prototype.icon;
965
965
 
966
966
  /**
967
- * @type {google.maps.MarkerShape}
967
+ * @type {google.maps.MarkerShape|undefined}
968
968
  */
969
969
  google.maps.Data.StyleOptions.prototype.shape;
970
970
 
971
971
  /**
972
- * @type {string}
972
+ * @type {string|undefined}
973
973
  */
974
974
  google.maps.Data.StyleOptions.prototype.strokeColor;
975
975
 
976
976
  /**
977
- * @type {number}
977
+ * @type {number|undefined}
978
978
  */
979
979
  google.maps.Data.StyleOptions.prototype.strokeOpacity;
980
980
 
981
981
  /**
982
- * @type {number}
982
+ * @type {number|undefined}
983
983
  */
984
984
  google.maps.Data.StyleOptions.prototype.strokeWeight;
985
985
 
986
986
  /**
987
- * @type {string}
987
+ * @type {string|undefined}
988
988
  */
989
989
  google.maps.Data.StyleOptions.prototype.title;
990
990
 
991
991
  /**
992
- * @type {boolean}
992
+ * @type {boolean|undefined}
993
993
  */
994
994
  google.maps.Data.StyleOptions.prototype.visible;
995
995
 
996
996
  /**
997
- * @type {number}
997
+ * @type {number|undefined}
998
998
  */
999
999
  google.maps.Data.StyleOptions.prototype.zIndex;
1000
1000
 
@@ -1004,7 +1004,7 @@ google.maps.Data.StyleOptions.prototype.zIndex;
1004
1004
  google.maps.Data.StylingFunction;
1005
1005
 
1006
1006
  /**
1007
- * @interface
1007
+ * @record
1008
1008
  */
1009
1009
  google.maps.DirectionsGeocodedWaypoint = function() {};
1010
1010
 
@@ -1024,7 +1024,7 @@ google.maps.DirectionsGeocodedWaypoint.prototype.place_id;
1024
1024
  google.maps.DirectionsGeocodedWaypoint.prototype.types;
1025
1025
 
1026
1026
  /**
1027
- * @interface
1027
+ * @record
1028
1028
  */
1029
1029
  google.maps.DirectionsLeg = function() {};
1030
1030
 
@@ -1145,7 +1145,7 @@ google.maps.DirectionsRenderer.prototype.setPanel = function(panel) {};
1145
1145
  google.maps.DirectionsRenderer.prototype.setRouteIndex = function(routeIndex) {};
1146
1146
 
1147
1147
  /**
1148
- * @interface
1148
+ * @record
1149
1149
  */
1150
1150
  google.maps.DirectionsRendererOptions = function() {};
1151
1151
 
@@ -1220,57 +1220,62 @@ google.maps.DirectionsRendererOptions.prototype.suppressMarkers;
1220
1220
  google.maps.DirectionsRendererOptions.prototype.suppressPolylines;
1221
1221
 
1222
1222
  /**
1223
- * @interface
1223
+ * @record
1224
1224
  */
1225
1225
  google.maps.DirectionsRequest = function() {};
1226
1226
 
1227
1227
  /**
1228
- * @type {boolean}
1228
+ * @type {boolean|undefined}
1229
1229
  */
1230
1230
  google.maps.DirectionsRequest.prototype.avoidFerries;
1231
1231
 
1232
1232
  /**
1233
- * @type {boolean}
1233
+ * @type {boolean|undefined}
1234
1234
  */
1235
1235
  google.maps.DirectionsRequest.prototype.avoidHighways;
1236
1236
 
1237
1237
  /**
1238
- * @type {boolean}
1238
+ * @type {boolean|undefined}
1239
1239
  */
1240
1240
  google.maps.DirectionsRequest.prototype.avoidTolls;
1241
1241
 
1242
1242
  /**
1243
- * @type {string|google.maps.LatLng|google.maps.Place}
1243
+ * @type {string|google.maps.LatLng|google.maps.Place|google.maps.LatLngLiteral}
1244
1244
  */
1245
1245
  google.maps.DirectionsRequest.prototype.destination;
1246
1246
 
1247
1247
  /**
1248
- * @type {google.maps.DrivingOptions|Object.<string>}
1248
+ * @type {google.maps.DrivingOptions|Object.<string>|undefined}
1249
1249
  */
1250
1250
  google.maps.DirectionsRequest.prototype.drivingOptions;
1251
1251
 
1252
1252
  /**
1253
- * @type {boolean}
1253
+ * @type {boolean|undefined}
1254
+ */
1255
+ google.maps.DirectionsRequest.prototype.newForwardGeocoder;
1256
+
1257
+ /**
1258
+ * @type {boolean|undefined}
1254
1259
  */
1255
1260
  google.maps.DirectionsRequest.prototype.optimizeWaypoints;
1256
1261
 
1257
1262
  /**
1258
- * @type {string|google.maps.LatLng|google.maps.Place}
1263
+ * @type {string|google.maps.LatLng|google.maps.Place|google.maps.LatLngLiteral}
1259
1264
  */
1260
1265
  google.maps.DirectionsRequest.prototype.origin;
1261
1266
 
1262
1267
  /**
1263
- * @type {boolean}
1268
+ * @type {boolean|undefined}
1264
1269
  */
1265
1270
  google.maps.DirectionsRequest.prototype.provideRouteAlternatives;
1266
1271
 
1267
1272
  /**
1268
- * @type {string}
1273
+ * @type {string|undefined}
1269
1274
  */
1270
1275
  google.maps.DirectionsRequest.prototype.region;
1271
1276
 
1272
1277
  /**
1273
- * @type {google.maps.TransitOptions|Object.<string>}
1278
+ * @type {google.maps.TransitOptions|Object.<string>|undefined}
1274
1279
  */
1275
1280
  google.maps.DirectionsRequest.prototype.transitOptions;
1276
1281
 
@@ -1280,17 +1285,17 @@ google.maps.DirectionsRequest.prototype.transitOptions;
1280
1285
  google.maps.DirectionsRequest.prototype.travelMode;
1281
1286
 
1282
1287
  /**
1283
- * @type {google.maps.UnitSystem}
1288
+ * @type {google.maps.UnitSystem|undefined}
1284
1289
  */
1285
1290
  google.maps.DirectionsRequest.prototype.unitSystem;
1286
1291
 
1287
1292
  /**
1288
- * @type {Array<google.maps.DirectionsWaypoint>}
1293
+ * @type {Array<google.maps.DirectionsWaypoint>|undefined}
1289
1294
  */
1290
1295
  google.maps.DirectionsRequest.prototype.waypoints;
1291
1296
 
1292
1297
  /**
1293
- * @interface
1298
+ * @record
1294
1299
  */
1295
1300
  google.maps.DirectionsResult = function() {};
1296
1301
 
@@ -1305,7 +1310,7 @@ google.maps.DirectionsResult.prototype.geocoded_waypoints;
1305
1310
  google.maps.DirectionsResult.prototype.routes;
1306
1311
 
1307
1312
  /**
1308
- * @interface
1313
+ * @record
1309
1314
  */
1310
1315
  google.maps.DirectionsRoute = function() {};
1311
1316
 
@@ -1376,7 +1381,7 @@ google.maps.DirectionsStatus = {
1376
1381
  };
1377
1382
 
1378
1383
  /**
1379
- * @interface
1384
+ * @record
1380
1385
  */
1381
1386
  google.maps.DirectionsStep = function() {};
1382
1387
 
@@ -1426,22 +1431,22 @@ google.maps.DirectionsStep.prototype.transit;
1426
1431
  google.maps.DirectionsStep.prototype.travel_mode;
1427
1432
 
1428
1433
  /**
1429
- * @interface
1434
+ * @record
1430
1435
  */
1431
1436
  google.maps.DirectionsWaypoint = function() {};
1432
1437
 
1433
1438
  /**
1434
- * @type {string|google.maps.LatLng|google.maps.Place}
1439
+ * @type {string|google.maps.LatLng|google.maps.Place|undefined}
1435
1440
  */
1436
1441
  google.maps.DirectionsWaypoint.prototype.location;
1437
1442
 
1438
1443
  /**
1439
- * @type {boolean}
1444
+ * @type {boolean|undefined}
1440
1445
  */
1441
1446
  google.maps.DirectionsWaypoint.prototype.stopover;
1442
1447
 
1443
1448
  /**
1444
- * @interface
1449
+ * @record
1445
1450
  */
1446
1451
  google.maps.Distance = function() {};
1447
1452
 
@@ -1465,47 +1470,52 @@ google.maps.DistanceMatrixElementStatus = {
1465
1470
  };
1466
1471
 
1467
1472
  /**
1468
- * @interface
1473
+ * @record
1469
1474
  */
1470
1475
  google.maps.DistanceMatrixRequest = function() {};
1471
1476
 
1472
1477
  /**
1473
- * @type {boolean}
1478
+ * @type {boolean|undefined}
1474
1479
  */
1475
1480
  google.maps.DistanceMatrixRequest.prototype.avoidFerries;
1476
1481
 
1477
1482
  /**
1478
- * @type {boolean}
1483
+ * @type {boolean|undefined}
1479
1484
  */
1480
1485
  google.maps.DistanceMatrixRequest.prototype.avoidHighways;
1481
1486
 
1482
1487
  /**
1483
- * @type {boolean}
1488
+ * @type {boolean|undefined}
1484
1489
  */
1485
1490
  google.maps.DistanceMatrixRequest.prototype.avoidTolls;
1486
1491
 
1487
1492
  /**
1488
- * @type {Array<string|google.maps.LatLng|google.maps.Place>}
1493
+ * @type {Array<(string|google.maps.LatLng|google.maps.Place)>}
1489
1494
  */
1490
1495
  google.maps.DistanceMatrixRequest.prototype.destinations;
1491
1496
 
1492
1497
  /**
1493
- * @type {google.maps.DrivingOptions|Object.<string>}
1498
+ * @type {google.maps.DrivingOptions|Object.<string>|undefined}
1494
1499
  */
1495
1500
  google.maps.DistanceMatrixRequest.prototype.drivingOptions;
1496
1501
 
1497
1502
  /**
1498
- * @type {Array<string|google.maps.LatLng|google.maps.Place>}
1503
+ * @type {boolean|undefined}
1504
+ */
1505
+ google.maps.DistanceMatrixRequest.prototype.newForwardGeocoder;
1506
+
1507
+ /**
1508
+ * @type {Array<(string|google.maps.LatLng|google.maps.Place)>}
1499
1509
  */
1500
1510
  google.maps.DistanceMatrixRequest.prototype.origins;
1501
1511
 
1502
1512
  /**
1503
- * @type {string}
1513
+ * @type {string|undefined}
1504
1514
  */
1505
1515
  google.maps.DistanceMatrixRequest.prototype.region;
1506
1516
 
1507
1517
  /**
1508
- * @type {google.maps.TransitOptions|Object.<string>}
1518
+ * @type {google.maps.TransitOptions|Object.<string>|undefined}
1509
1519
  */
1510
1520
  google.maps.DistanceMatrixRequest.prototype.transitOptions;
1511
1521
 
@@ -1515,12 +1525,12 @@ google.maps.DistanceMatrixRequest.prototype.transitOptions;
1515
1525
  google.maps.DistanceMatrixRequest.prototype.travelMode;
1516
1526
 
1517
1527
  /**
1518
- * @type {google.maps.UnitSystem}
1528
+ * @type {google.maps.UnitSystem|undefined}
1519
1529
  */
1520
1530
  google.maps.DistanceMatrixRequest.prototype.unitSystem;
1521
1531
 
1522
1532
  /**
1523
- * @interface
1533
+ * @record
1524
1534
  */
1525
1535
  google.maps.DistanceMatrixResponse = function() {};
1526
1536
 
@@ -1540,7 +1550,7 @@ google.maps.DistanceMatrixResponse.prototype.originAddresses;
1540
1550
  google.maps.DistanceMatrixResponse.prototype.rows;
1541
1551
 
1542
1552
  /**
1543
- * @interface
1553
+ * @record
1544
1554
  */
1545
1555
  google.maps.DistanceMatrixResponseElement = function() {};
1546
1556
 
@@ -1570,7 +1580,7 @@ google.maps.DistanceMatrixResponseElement.prototype.fare;
1570
1580
  google.maps.DistanceMatrixResponseElement.prototype.status;
1571
1581
 
1572
1582
  /**
1573
- * @interface
1583
+ * @record
1574
1584
  */
1575
1585
  google.maps.DistanceMatrixResponseRow = function() {};
1576
1586
 
@@ -1605,7 +1615,7 @@ google.maps.DistanceMatrixStatus = {
1605
1615
  };
1606
1616
 
1607
1617
  /**
1608
- * @interface
1618
+ * @record
1609
1619
  */
1610
1620
  google.maps.DrivingOptions = function() {};
1611
1621
 
@@ -1615,12 +1625,12 @@ google.maps.DrivingOptions = function() {};
1615
1625
  google.maps.DrivingOptions.prototype.departureTime;
1616
1626
 
1617
1627
  /**
1618
- * @type {google.maps.TrafficModel}
1628
+ * @type {google.maps.TrafficModel|undefined}
1619
1629
  */
1620
1630
  google.maps.DrivingOptions.prototype.trafficModel;
1621
1631
 
1622
1632
  /**
1623
- * @interface
1633
+ * @record
1624
1634
  */
1625
1635
  google.maps.Duration = function() {};
1626
1636
 
@@ -1635,7 +1645,7 @@ google.maps.Duration.prototype.text;
1635
1645
  google.maps.Duration.prototype.value;
1636
1646
 
1637
1647
  /**
1638
- * @interface
1648
+ * @record
1639
1649
  */
1640
1650
  google.maps.ElevationResult = function() {};
1641
1651
 
@@ -1685,7 +1695,7 @@ google.maps.ElevationStatus = {
1685
1695
  };
1686
1696
 
1687
1697
  /**
1688
- * @interface
1698
+ * @record
1689
1699
  */
1690
1700
  google.maps.FullscreenControlOptions = function() {};
1691
1701
 
@@ -1695,7 +1705,7 @@ google.maps.FullscreenControlOptions = function() {};
1695
1705
  google.maps.FullscreenControlOptions.prototype.position;
1696
1706
 
1697
1707
  /**
1698
- * @interface
1708
+ * @record
1699
1709
  */
1700
1710
  google.maps.FusionTablesCell = function() {};
1701
1711
 
@@ -1745,7 +1755,7 @@ google.maps.FusionTablesLayer.prototype.setMap = function(map) {};
1745
1755
  google.maps.FusionTablesLayer.prototype.setOptions = function(options) {};
1746
1756
 
1747
1757
  /**
1748
- * @interface
1758
+ * @record
1749
1759
  */
1750
1760
  google.maps.FusionTablesLayerOptions = function() {};
1751
1761
 
@@ -1790,7 +1800,7 @@ google.maps.FusionTablesMarkerOptions = function() {};
1790
1800
  google.maps.FusionTablesMarkerOptions.prototype.iconName;
1791
1801
 
1792
1802
  /**
1793
- * @interface
1803
+ * @record
1794
1804
  */
1795
1805
  google.maps.FusionTablesMouseEvent = function() {};
1796
1806
 
@@ -1957,7 +1967,7 @@ google.maps.GeocoderAddressComponent.prototype.short_name;
1957
1967
  google.maps.GeocoderAddressComponent.prototype.types;
1958
1968
 
1959
1969
  /**
1960
- * @interface
1970
+ * @record
1961
1971
  */
1962
1972
  google.maps.GeocoderComponentRestrictions = function() {};
1963
1973
 
@@ -2022,7 +2032,7 @@ google.maps.GeocoderLocationType = {
2022
2032
  };
2023
2033
 
2024
2034
  /**
2025
- * @interface
2035
+ * @record
2026
2036
  */
2027
2037
  google.maps.GeocoderRequest = function() {};
2028
2038
 
@@ -2046,6 +2056,11 @@ google.maps.GeocoderRequest.prototype.componentRestrictions;
2046
2056
  */
2047
2057
  google.maps.GeocoderRequest.prototype.location;
2048
2058
 
2059
+ /**
2060
+ * @type {boolean}
2061
+ */
2062
+ google.maps.GeocoderRequest.prototype.newForwardGeocoder;
2063
+
2049
2064
  /**
2050
2065
  * @type {string}
2051
2066
  */
@@ -2155,7 +2170,7 @@ google.maps.GroundOverlay.prototype.setMap = function(map) {};
2155
2170
  google.maps.GroundOverlay.prototype.setOpacity = function(opacity) {};
2156
2171
 
2157
2172
  /**
2158
- * @interface
2173
+ * @record
2159
2174
  */
2160
2175
  google.maps.GroundOverlayOptions = function() {};
2161
2176
 
@@ -2175,7 +2190,7 @@ google.maps.GroundOverlayOptions.prototype.map;
2175
2190
  google.maps.GroundOverlayOptions.prototype.opacity;
2176
2191
 
2177
2192
  /**
2178
- * @interface
2193
+ * @record
2179
2194
  */
2180
2195
  google.maps.Icon = function() {};
2181
2196
 
@@ -2210,7 +2225,18 @@ google.maps.Icon.prototype.size;
2210
2225
  google.maps.Icon.prototype.url;
2211
2226
 
2212
2227
  /**
2213
- * @interface
2228
+ * @extends {google.maps.MouseEvent}
2229
+ * @constructor
2230
+ */
2231
+ google.maps.IconMouseEvent = function() {};
2232
+
2233
+ /**
2234
+ * @type {string}
2235
+ */
2236
+ google.maps.IconMouseEvent.prototype.placeId;
2237
+
2238
+ /**
2239
+ * @record
2214
2240
  */
2215
2241
  google.maps.IconSequence = function() {};
2216
2242
 
@@ -2306,7 +2332,7 @@ google.maps.ImageMapType.prototype.releaseTile = function(tileDiv) {};
2306
2332
  google.maps.ImageMapType.prototype.setOpacity = function(opacity) {};
2307
2333
 
2308
2334
  /**
2309
- * @interface
2335
+ * @record
2310
2336
  */
2311
2337
  google.maps.ImageMapTypeOptions = function() {};
2312
2338
 
@@ -2407,7 +2433,7 @@ google.maps.InfoWindow.prototype.setPosition = function(position) {};
2407
2433
  google.maps.InfoWindow.prototype.setZIndex = function(zIndex) {};
2408
2434
 
2409
2435
  /**
2410
- * @interface
2436
+ * @record
2411
2437
  */
2412
2438
  google.maps.InfoWindowOptions = function() {};
2413
2439
 
@@ -2594,7 +2620,7 @@ google.maps.KmlLayerMetadata.prototype.name;
2594
2620
  google.maps.KmlLayerMetadata.prototype.snippet;
2595
2621
 
2596
2622
  /**
2597
- * @interface
2623
+ * @record
2598
2624
  */
2599
2625
  google.maps.KmlLayerOptions = function() {};
2600
2626
 
@@ -2718,7 +2744,7 @@ google.maps.LatLng.prototype.toUrlValue = function(opt_precision) {};
2718
2744
  google.maps.LatLngBounds = function(opt_sw, opt_ne) {};
2719
2745
 
2720
2746
  /**
2721
- * @param {google.maps.LatLng} latLng
2747
+ * @param {google.maps.LatLng|google.maps.LatLngLiteral} latLng
2722
2748
  * @return {boolean}
2723
2749
  */
2724
2750
  google.maps.LatLngBounds.prototype.contains = function(latLng) {};
@@ -2730,7 +2756,7 @@ google.maps.LatLngBounds.prototype.contains = function(latLng) {};
2730
2756
  google.maps.LatLngBounds.prototype.equals = function(other) {};
2731
2757
 
2732
2758
  /**
2733
- * @param {google.maps.LatLng} point
2759
+ * @param {google.maps.LatLng|google.maps.LatLngLiteral} point
2734
2760
  * @return {google.maps.LatLngBounds}
2735
2761
  */
2736
2762
  google.maps.LatLngBounds.prototype.extend = function(point) {};
@@ -2794,7 +2820,7 @@ google.maps.LatLngBounds.prototype.toUrlValue = function(opt_precision) {};
2794
2820
  google.maps.LatLngBounds.prototype.union = function(other) {};
2795
2821
 
2796
2822
  /**
2797
- * @interface
2823
+ * @record
2798
2824
  */
2799
2825
  google.maps.LatLngBoundsLiteral = function() {};
2800
2826
 
@@ -2819,7 +2845,7 @@ google.maps.LatLngBoundsLiteral.prototype.south;
2819
2845
  google.maps.LatLngBoundsLiteral.prototype.west;
2820
2846
 
2821
2847
  /**
2822
- * @interface
2848
+ * @record
2823
2849
  */
2824
2850
  google.maps.LatLngLiteral = function() {};
2825
2851
 
@@ -2834,7 +2860,7 @@ google.maps.LatLngLiteral.prototype.lat;
2834
2860
  google.maps.LatLngLiteral.prototype.lng;
2835
2861
 
2836
2862
  /**
2837
- * @interface
2863
+ * @record
2838
2864
  */
2839
2865
  google.maps.LocationElevationRequest = function() {};
2840
2866
 
@@ -2951,16 +2977,16 @@ google.maps.MVCObject.prototype.notify = function(key) {};
2951
2977
 
2952
2978
  /**
2953
2979
  * @param {string} key
2954
- * @param {?} value
2980
+ * @param {?=} opt_value
2955
2981
  * @return {undefined}
2956
2982
  */
2957
- google.maps.MVCObject.prototype.set = function(key, value) {};
2983
+ google.maps.MVCObject.prototype.set = function(key, opt_value) {};
2958
2984
 
2959
2985
  /**
2960
- * @param {Object|undefined} values
2986
+ * @param {Object=} opt_values
2961
2987
  * @return {undefined}
2962
2988
  */
2963
- google.maps.MVCObject.prototype.setValues = function(values) {};
2989
+ google.maps.MVCObject.prototype.setValues = function(opt_values) {};
2964
2990
 
2965
2991
  /**
2966
2992
  * @param {string} key
@@ -3173,7 +3199,7 @@ google.maps.MapCanvasProjection.prototype.fromLatLngToDivPixel = function(latLng
3173
3199
  google.maps.MapCanvasProjection.prototype.getWorldWidth = function() {};
3174
3200
 
3175
3201
  /**
3176
- * @interface
3202
+ * @record
3177
3203
  */
3178
3204
  google.maps.MapOptions = function() {};
3179
3205
 
@@ -3228,19 +3254,19 @@ google.maps.MapOptions.prototype.fullscreenControl;
3228
3254
  google.maps.MapOptions.prototype.fullscreenControlOptions;
3229
3255
 
3230
3256
  /**
3231
- * @type {number}
3257
+ * @type {string}
3232
3258
  */
3233
- google.maps.MapOptions.prototype.heading;
3259
+ google.maps.MapOptions.prototype.gestureHandling;
3234
3260
 
3235
3261
  /**
3236
- * @type {boolean}
3262
+ * @type {number}
3237
3263
  */
3238
- google.maps.MapOptions.prototype.keyboardShortcuts;
3264
+ google.maps.MapOptions.prototype.heading;
3239
3265
 
3240
3266
  /**
3241
3267
  * @type {boolean}
3242
3268
  */
3243
- google.maps.MapOptions.prototype.mapMaker;
3269
+ google.maps.MapOptions.prototype.keyboardShortcuts;
3244
3270
 
3245
3271
  /**
3246
3272
  * @type {boolean}
@@ -3383,7 +3409,7 @@ google.maps.MapPanes.prototype.overlayLayer;
3383
3409
  google.maps.MapPanes.prototype.overlayMouseTarget;
3384
3410
 
3385
3411
  /**
3386
- * @interface
3412
+ * @record
3387
3413
  */
3388
3414
  google.maps.MapType = function() {};
3389
3415
 
@@ -3437,7 +3463,7 @@ google.maps.MapType.prototype.getTile = function(tileCoord, zoom, ownerDocument)
3437
3463
  google.maps.MapType.prototype.releaseTile = function(tile) {};
3438
3464
 
3439
3465
  /**
3440
- * @interface
3466
+ * @record
3441
3467
  */
3442
3468
  google.maps.MapTypeControlOptions = function() {};
3443
3469
 
@@ -3483,14 +3509,14 @@ google.maps.MapTypeRegistry = function() {};
3483
3509
 
3484
3510
  /**
3485
3511
  * @param {string} id
3486
- * @param {google.maps.MapType|undefined} mapType
3512
+ * @param {google.maps.MapType=} opt_mapType
3487
3513
  * @return {undefined}
3488
3514
  * @override
3489
3515
  */
3490
- google.maps.MapTypeRegistry.prototype.set = function(id, mapType) {};
3516
+ google.maps.MapTypeRegistry.prototype.set = function(id, opt_mapType) {};
3491
3517
 
3492
3518
  /**
3493
- * @interface
3519
+ * @record
3494
3520
  */
3495
3521
  google.maps.MapTypeStyle = function() {};
3496
3522
 
@@ -3505,55 +3531,10 @@ google.maps.MapTypeStyle.prototype.elementType;
3505
3531
  google.maps.MapTypeStyle.prototype.featureType;
3506
3532
 
3507
3533
  /**
3508
- * @type {Array<google.maps.MapTypeStyler>}
3534
+ * @type {Array<Object>}
3509
3535
  */
3510
3536
  google.maps.MapTypeStyle.prototype.stylers;
3511
3537
 
3512
- /**
3513
- * @interface
3514
- */
3515
- google.maps.MapTypeStyler = function() {};
3516
-
3517
- /**
3518
- * @type {string}
3519
- */
3520
- google.maps.MapTypeStyler.prototype.color;
3521
-
3522
- /**
3523
- * @type {number}
3524
- */
3525
- google.maps.MapTypeStyler.prototype.gamma;
3526
-
3527
- /**
3528
- * @type {string}
3529
- */
3530
- google.maps.MapTypeStyler.prototype.hue;
3531
-
3532
- /**
3533
- * @type {boolean}
3534
- */
3535
- google.maps.MapTypeStyler.prototype.invert_lightness;
3536
-
3537
- /**
3538
- * @type {number}
3539
- */
3540
- google.maps.MapTypeStyler.prototype.lightness;
3541
-
3542
- /**
3543
- * @type {number}
3544
- */
3545
- google.maps.MapTypeStyler.prototype.saturation;
3546
-
3547
- /**
3548
- * @type {string}
3549
- */
3550
- google.maps.MapTypeStyler.prototype.visibility;
3551
-
3552
- /**
3553
- * @type {number}
3554
- */
3555
- google.maps.MapTypeStyler.prototype.weight;
3556
-
3557
3538
  /**
3558
3539
  * @constructor
3559
3540
  */
@@ -3764,7 +3745,7 @@ google.maps.Marker.prototype.setZIndex = function(zIndex) {};
3764
3745
  google.maps.Marker.MAX_ZINDEX;
3765
3746
 
3766
3747
  /**
3767
- * @interface
3748
+ * @record
3768
3749
  */
3769
3750
  google.maps.MarkerLabel = function() {};
3770
3751
 
@@ -3794,7 +3775,7 @@ google.maps.MarkerLabel.prototype.fontWeight;
3794
3775
  google.maps.MarkerLabel.prototype.text;
3795
3776
 
3796
3777
  /**
3797
- * @interface
3778
+ * @record
3798
3779
  */
3799
3780
  google.maps.MarkerOptions = function() {};
3800
3781
 
@@ -3889,7 +3870,7 @@ google.maps.MarkerOptions.prototype.visible;
3889
3870
  google.maps.MarkerOptions.prototype.zIndex;
3890
3871
 
3891
3872
  /**
3892
- * @interface
3873
+ * @record
3893
3874
  */
3894
3875
  google.maps.MarkerPlace = function() {};
3895
3876
 
@@ -3909,7 +3890,7 @@ google.maps.MarkerPlace.prototype.placeId;
3909
3890
  google.maps.MarkerPlace.prototype.query;
3910
3891
 
3911
3892
  /**
3912
- * @interface
3893
+ * @record
3913
3894
  */
3914
3895
  google.maps.MarkerShape = function() {};
3915
3896
 
@@ -3924,7 +3905,7 @@ google.maps.MarkerShape.prototype.coords;
3924
3905
  google.maps.MarkerShape.prototype.type;
3925
3906
 
3926
3907
  /**
3927
- * @interface
3908
+ * @record
3928
3909
  */
3929
3910
  google.maps.MaxZoomResult = function() {};
3930
3911
 
@@ -3958,6 +3939,16 @@ google.maps.MaxZoomStatus = {
3958
3939
  OK: '1'
3959
3940
  };
3960
3941
 
3942
+ /**
3943
+ * @record
3944
+ */
3945
+ google.maps.MotionTrackingControlOptions = function() {};
3946
+
3947
+ /**
3948
+ * @type {google.maps.ControlPosition}
3949
+ */
3950
+ google.maps.MotionTrackingControlOptions.prototype.position;
3951
+
3961
3952
  /**
3962
3953
  * @constructor
3963
3954
  */
@@ -4019,7 +4010,7 @@ google.maps.OverlayView.prototype.onRemove = function() {};
4019
4010
  google.maps.OverlayView.prototype.setMap = function(map) {};
4020
4011
 
4021
4012
  /**
4022
- * @interface
4013
+ * @record
4023
4014
  */
4024
4015
  google.maps.PanControlOptions = function() {};
4025
4016
 
@@ -4029,7 +4020,17 @@ google.maps.PanControlOptions = function() {};
4029
4020
  google.maps.PanControlOptions.prototype.position;
4030
4021
 
4031
4022
  /**
4032
- * @interface
4023
+ * @record
4024
+ */
4025
+ google.maps.PanoProviderOptions = function() {};
4026
+
4027
+ /**
4028
+ * @type {boolean|undefined}
4029
+ */
4030
+ google.maps.PanoProviderOptions.prototype.cors;
4031
+
4032
+ /**
4033
+ * @record
4033
4034
  */
4034
4035
  google.maps.PathElevationRequest = function() {};
4035
4036
 
@@ -4044,22 +4045,22 @@ google.maps.PathElevationRequest.prototype.path;
4044
4045
  google.maps.PathElevationRequest.prototype.samples;
4045
4046
 
4046
4047
  /**
4047
- * @interface
4048
+ * @record
4048
4049
  */
4049
4050
  google.maps.Place = function() {};
4050
4051
 
4051
4052
  /**
4052
- * @type {google.maps.LatLng|google.maps.LatLngLiteral}
4053
+ * @type {google.maps.LatLng|google.maps.LatLngLiteral|undefined}
4053
4054
  */
4054
4055
  google.maps.Place.prototype.location;
4055
4056
 
4056
4057
  /**
4057
- * @type {string}
4058
+ * @type {string|undefined}
4058
4059
  */
4059
4060
  google.maps.Place.prototype.placeId;
4060
4061
 
4061
4062
  /**
4062
- * @type {string}
4063
+ * @type {string|undefined}
4063
4064
  */
4064
4065
  google.maps.Place.prototype.query;
4065
4066
 
@@ -4199,7 +4200,7 @@ google.maps.Polygon.prototype.setPaths = function(paths) {};
4199
4200
  google.maps.Polygon.prototype.setVisible = function(visible) {};
4200
4201
 
4201
4202
  /**
4202
- * @interface
4203
+ * @record
4203
4204
  */
4204
4205
  google.maps.PolygonOptions = function() {};
4205
4206
 
@@ -4347,7 +4348,7 @@ google.maps.Polyline.prototype.setPath = function(path) {};
4347
4348
  google.maps.Polyline.prototype.setVisible = function(visible) {};
4348
4349
 
4349
4350
  /**
4350
- * @interface
4351
+ * @record
4351
4352
  */
4352
4353
  google.maps.PolylineOptions = function() {};
4353
4354
 
@@ -4412,7 +4413,7 @@ google.maps.PolylineOptions.prototype.visible;
4412
4413
  google.maps.PolylineOptions.prototype.zIndex;
4413
4414
 
4414
4415
  /**
4415
- * @interface
4416
+ * @record
4416
4417
  */
4417
4418
  google.maps.Projection = function() {};
4418
4419
 
@@ -4504,7 +4505,7 @@ google.maps.Rectangle.prototype.setOptions = function(options) {};
4504
4505
  google.maps.Rectangle.prototype.setVisible = function(visible) {};
4505
4506
 
4506
4507
  /**
4507
- * @interface
4508
+ * @record
4508
4509
  */
4509
4510
  google.maps.RectangleOptions = function() {};
4510
4511
 
@@ -4574,7 +4575,7 @@ google.maps.RectangleOptions.prototype.visible;
4574
4575
  google.maps.RectangleOptions.prototype.zIndex;
4575
4576
 
4576
4577
  /**
4577
- * @interface
4578
+ * @record
4578
4579
  */
4579
4580
  google.maps.RotateControlOptions = function() {};
4580
4581
 
@@ -4622,7 +4623,7 @@ google.maps.SaveWidget.prototype.setOptions = function(opts) {};
4622
4623
  google.maps.SaveWidget.prototype.setPlace = function(place) {};
4623
4624
 
4624
4625
  /**
4625
- * @interface
4626
+ * @record
4626
4627
  */
4627
4628
  google.maps.SaveWidgetOptions = function() {};
4628
4629
 
@@ -4637,7 +4638,7 @@ google.maps.SaveWidgetOptions.prototype.attribution;
4637
4638
  google.maps.SaveWidgetOptions.prototype.place;
4638
4639
 
4639
4640
  /**
4640
- * @interface
4641
+ * @record
4641
4642
  */
4642
4643
  google.maps.ScaleControlOptions = function() {};
4643
4644
 
@@ -4685,7 +4686,7 @@ google.maps.Size.prototype.equals = function(other) {};
4685
4686
  google.maps.Size.prototype.toString = function() {};
4686
4687
 
4687
4688
  /**
4688
- * @interface
4689
+ * @record
4689
4690
  */
4690
4691
  google.maps.StreetViewAddressControlOptions = function() {};
4691
4692
 
@@ -4695,7 +4696,7 @@ google.maps.StreetViewAddressControlOptions = function() {};
4695
4696
  google.maps.StreetViewAddressControlOptions.prototype.position;
4696
4697
 
4697
4698
  /**
4698
- * @interface
4699
+ * @record
4699
4700
  */
4700
4701
  google.maps.StreetViewControlOptions = function() {};
4701
4702
 
@@ -4723,7 +4724,7 @@ google.maps.StreetViewCoverageLayer.prototype.getMap = function() {};
4723
4724
  google.maps.StreetViewCoverageLayer.prototype.setMap = function(map) {};
4724
4725
 
4725
4726
  /**
4726
- * @interface
4727
+ * @record
4727
4728
  */
4728
4729
  google.maps.StreetViewLink = function() {};
4729
4730
 
@@ -4743,7 +4744,7 @@ google.maps.StreetViewLink.prototype.heading;
4743
4744
  google.maps.StreetViewLink.prototype.pano;
4744
4745
 
4745
4746
  /**
4746
- * @interface
4747
+ * @record
4747
4748
  */
4748
4749
  google.maps.StreetViewLocation = function() {};
4749
4750
 
@@ -4768,7 +4769,7 @@ google.maps.StreetViewLocation.prototype.pano;
4768
4769
  google.maps.StreetViewLocation.prototype.shortDescription;
4769
4770
 
4770
4771
  /**
4771
- * @interface
4772
+ * @record
4772
4773
  */
4773
4774
  google.maps.StreetViewLocationRequest = function() {};
4774
4775
 
@@ -4793,7 +4794,7 @@ google.maps.StreetViewLocationRequest.prototype.radius;
4793
4794
  google.maps.StreetViewLocationRequest.prototype.source;
4794
4795
 
4795
4796
  /**
4796
- * @interface
4797
+ * @record
4797
4798
  */
4798
4799
  google.maps.StreetViewPanoRequest = function() {};
4799
4800
 
@@ -4827,6 +4828,12 @@ google.maps.StreetViewPanorama.prototype.getLinks = function() {};
4827
4828
  */
4828
4829
  google.maps.StreetViewPanorama.prototype.getLocation = function() {};
4829
4830
 
4831
+ /**
4832
+ * @nosideeffects
4833
+ * @return {boolean}
4834
+ */
4835
+ google.maps.StreetViewPanorama.prototype.getMotionTracking = function() {};
4836
+
4830
4837
  /**
4831
4838
  * @nosideeffects
4832
4839
  * @return {string}
@@ -4871,9 +4878,10 @@ google.maps.StreetViewPanorama.prototype.getZoom = function() {};
4871
4878
 
4872
4879
  /**
4873
4880
  * @param {function(string):google.maps.StreetViewPanoramaData} provider
4881
+ * @param {(google.maps.PanoProviderOptions|Object.<string>)=} opt_opt_options
4874
4882
  * @return {undefined}
4875
4883
  */
4876
- google.maps.StreetViewPanorama.prototype.registerPanoProvider = function(provider) {};
4884
+ google.maps.StreetViewPanorama.prototype.registerPanoProvider = function(provider, opt_opt_options) {};
4877
4885
 
4878
4886
  /**
4879
4887
  * @param {Array<google.maps.StreetViewLink>} links
@@ -4881,6 +4889,12 @@ google.maps.StreetViewPanorama.prototype.registerPanoProvider = function(provide
4881
4889
  */
4882
4890
  google.maps.StreetViewPanorama.prototype.setLinks = function(links) {};
4883
4891
 
4892
+ /**
4893
+ * @param {boolean} motionTracking
4894
+ * @return {undefined}
4895
+ */
4896
+ google.maps.StreetViewPanorama.prototype.setMotionTracking = function(motionTracking) {};
4897
+
4884
4898
  /**
4885
4899
  * @param {google.maps.StreetViewPanoramaOptions|Object.<string>} options
4886
4900
  * @return {undefined}
@@ -4918,7 +4932,7 @@ google.maps.StreetViewPanorama.prototype.setVisible = function(flag) {};
4918
4932
  google.maps.StreetViewPanorama.prototype.setZoom = function(zoom) {};
4919
4933
 
4920
4934
  /**
4921
- * @interface
4935
+ * @record
4922
4936
  */
4923
4937
  google.maps.StreetViewPanoramaData = function() {};
4924
4938
 
@@ -4948,7 +4962,7 @@ google.maps.StreetViewPanoramaData.prototype.location;
4948
4962
  google.maps.StreetViewPanoramaData.prototype.tiles;
4949
4963
 
4950
4964
  /**
4951
- * @interface
4965
+ * @record
4952
4966
  */
4953
4967
  google.maps.StreetViewPanoramaOptions = function() {};
4954
4968
 
@@ -5002,6 +5016,16 @@ google.maps.StreetViewPanoramaOptions.prototype.imageDateControl;
5002
5016
  */
5003
5017
  google.maps.StreetViewPanoramaOptions.prototype.linksControl;
5004
5018
 
5019
+ /**
5020
+ * @type {boolean}
5021
+ */
5022
+ google.maps.StreetViewPanoramaOptions.prototype.motionTracking;
5023
+
5024
+ /**
5025
+ * @type {boolean}
5026
+ */
5027
+ google.maps.StreetViewPanoramaOptions.prototype.motionTrackingControl;
5028
+
5005
5029
  /**
5006
5030
  * @type {boolean}
5007
5031
  */
@@ -5017,11 +5041,6 @@ google.maps.StreetViewPanoramaOptions.prototype.panControlOptions;
5017
5041
  */
5018
5042
  google.maps.StreetViewPanoramaOptions.prototype.pano;
5019
5043
 
5020
- /**
5021
- * @type {function(string): google.maps.StreetViewPanoramaData}
5022
- */
5023
- google.maps.StreetViewPanoramaOptions.prototype.panoProvider;
5024
-
5025
5044
  /**
5026
5045
  * @type {google.maps.LatLng|google.maps.LatLngLiteral}
5027
5046
  */
@@ -5037,6 +5056,11 @@ google.maps.StreetViewPanoramaOptions.prototype.pov;
5037
5056
  */
5038
5057
  google.maps.StreetViewPanoramaOptions.prototype.scrollwheel;
5039
5058
 
5059
+ /**
5060
+ * @type {boolean}
5061
+ */
5062
+ google.maps.StreetViewPanoramaOptions.prototype.showRoadLabels;
5063
+
5040
5064
  /**
5041
5065
  * @type {boolean}
5042
5066
  */
@@ -5105,7 +5129,7 @@ google.maps.StreetViewStatus = {
5105
5129
  };
5106
5130
 
5107
5131
  /**
5108
- * @interface
5132
+ * @record
5109
5133
  */
5110
5134
  google.maps.StreetViewTileData = function() {};
5111
5135
 
@@ -5203,7 +5227,7 @@ google.maps.StyledMapType.prototype.getTile = function(tileCoord, zoom, ownerDoc
5203
5227
  google.maps.StyledMapType.prototype.releaseTile = function(tile) {};
5204
5228
 
5205
5229
  /**
5206
- * @interface
5230
+ * @record
5207
5231
  */
5208
5232
  google.maps.StyledMapTypeOptions = function() {};
5209
5233
 
@@ -5228,7 +5252,7 @@ google.maps.StyledMapTypeOptions.prototype.minZoom;
5228
5252
  google.maps.StyledMapTypeOptions.prototype.name;
5229
5253
 
5230
5254
  /**
5231
- * @interface
5255
+ * @record
5232
5256
  */
5233
5257
  google.maps.Symbol = function() {};
5234
5258
 
@@ -5294,7 +5318,7 @@ google.maps.SymbolPath = {
5294
5318
  };
5295
5319
 
5296
5320
  /**
5297
- * @interface
5321
+ * @record
5298
5322
  */
5299
5323
  google.maps.Time = function() {};
5300
5324
 
@@ -5339,7 +5363,7 @@ google.maps.TrafficLayer.prototype.setMap = function(map) {};
5339
5363
  google.maps.TrafficLayer.prototype.setOptions = function(options) {};
5340
5364
 
5341
5365
  /**
5342
- * @interface
5366
+ * @record
5343
5367
  */
5344
5368
  google.maps.TrafficLayerOptions = function() {};
5345
5369
 
@@ -5363,7 +5387,7 @@ google.maps.TrafficModel = {
5363
5387
  };
5364
5388
 
5365
5389
  /**
5366
- * @interface
5390
+ * @record
5367
5391
  */
5368
5392
  google.maps.TransitAgency = function() {};
5369
5393
 
@@ -5383,7 +5407,7 @@ google.maps.TransitAgency.prototype.phone;
5383
5407
  google.maps.TransitAgency.prototype.url;
5384
5408
 
5385
5409
  /**
5386
- * @interface
5410
+ * @record
5387
5411
  */
5388
5412
  google.maps.TransitDetails = function() {};
5389
5413
 
@@ -5428,10 +5452,20 @@ google.maps.TransitDetails.prototype.line;
5428
5452
  google.maps.TransitDetails.prototype.num_stops;
5429
5453
 
5430
5454
  /**
5431
- * @interface
5455
+ * @record
5432
5456
  */
5433
5457
  google.maps.TransitFare = function() {};
5434
5458
 
5459
+ /**
5460
+ * @type {string}
5461
+ */
5462
+ google.maps.TransitFare.prototype.currency;
5463
+
5464
+ /**
5465
+ * @type {number}
5466
+ */
5467
+ google.maps.TransitFare.prototype.value;
5468
+
5435
5469
  /**
5436
5470
  * @extends {google.maps.MVCObject}
5437
5471
  * @constructor
@@ -5451,7 +5485,7 @@ google.maps.TransitLayer.prototype.getMap = function() {};
5451
5485
  google.maps.TransitLayer.prototype.setMap = function(map) {};
5452
5486
 
5453
5487
  /**
5454
- * @interface
5488
+ * @record
5455
5489
  */
5456
5490
  google.maps.TransitLine = function() {};
5457
5491
 
@@ -5507,27 +5541,27 @@ google.maps.TransitMode = {
5507
5541
  };
5508
5542
 
5509
5543
  /**
5510
- * @interface
5544
+ * @record
5511
5545
  */
5512
5546
  google.maps.TransitOptions = function() {};
5513
5547
 
5514
5548
  /**
5515
- * @type {Date}
5549
+ * @type {Date|undefined}
5516
5550
  */
5517
5551
  google.maps.TransitOptions.prototype.arrivalTime;
5518
5552
 
5519
5553
  /**
5520
- * @type {Date}
5554
+ * @type {Date|undefined}
5521
5555
  */
5522
5556
  google.maps.TransitOptions.prototype.departureTime;
5523
5557
 
5524
5558
  /**
5525
- * @type {Array<google.maps.TransitMode>}
5559
+ * @type {Array<google.maps.TransitMode>|undefined}
5526
5560
  */
5527
5561
  google.maps.TransitOptions.prototype.modes;
5528
5562
 
5529
5563
  /**
5530
- * @type {google.maps.TransitRoutePreference}
5564
+ * @type {google.maps.TransitRoutePreference|undefined}
5531
5565
  */
5532
5566
  google.maps.TransitOptions.prototype.routingPreference;
5533
5567
 
@@ -5540,7 +5574,7 @@ google.maps.TransitRoutePreference = {
5540
5574
  };
5541
5575
 
5542
5576
  /**
5543
- * @interface
5577
+ * @record
5544
5578
  */
5545
5579
  google.maps.TransitStop = function() {};
5546
5580
 
@@ -5555,7 +5589,7 @@ google.maps.TransitStop.prototype.location;
5555
5589
  google.maps.TransitStop.prototype.name;
5556
5590
 
5557
5591
  /**
5558
- * @interface
5592
+ * @record
5559
5593
  */
5560
5594
  google.maps.TransitVehicle = function() {};
5561
5595
 
@@ -5598,7 +5632,7 @@ google.maps.UnitSystem = {
5598
5632
  };
5599
5633
 
5600
5634
  /**
5601
- * @interface
5635
+ * @record
5602
5636
  */
5603
5637
  google.maps.ZoomControlOptions = function() {};
5604
5638
 
@@ -5611,7 +5645,7 @@ google.maps.ZoomControlOptions.prototype.position;
5611
5645
  google.maps.drawing = {};
5612
5646
 
5613
5647
  /**
5614
- * @interface
5648
+ * @record
5615
5649
  */
5616
5650
  google.maps.drawing.DrawingControlOptions = function() {};
5617
5651
 
@@ -5663,7 +5697,7 @@ google.maps.drawing.DrawingManager.prototype.setMap = function(map) {};
5663
5697
  google.maps.drawing.DrawingManager.prototype.setOptions = function(options) {};
5664
5698
 
5665
5699
  /**
5666
- * @interface
5700
+ * @record
5667
5701
  */
5668
5702
  google.maps.drawing.DrawingManagerOptions = function() {};
5669
5703
 
@@ -5945,7 +5979,7 @@ google.maps.places.Autocomplete.prototype.setComponentRestrictions = function(re
5945
5979
  google.maps.places.Autocomplete.prototype.setTypes = function(types) {};
5946
5980
 
5947
5981
  /**
5948
- * @interface
5982
+ * @record
5949
5983
  */
5950
5984
  google.maps.places.AutocompleteOptions = function() {};
5951
5985
 
@@ -5955,17 +5989,27 @@ google.maps.places.AutocompleteOptions = function() {};
5955
5989
  google.maps.places.AutocompleteOptions.prototype.bounds;
5956
5990
 
5957
5991
  /**
5958
- * @type {google.maps.places.ComponentRestrictions}
5992
+ * @type {google.maps.places.ComponentRestrictions|undefined}
5959
5993
  */
5960
5994
  google.maps.places.AutocompleteOptions.prototype.componentRestrictions;
5961
5995
 
5962
5996
  /**
5963
- * @type {Array<string>}
5997
+ * @type {boolean|undefined}
5998
+ */
5999
+ google.maps.places.AutocompleteOptions.prototype.placeIdOnly;
6000
+
6001
+ /**
6002
+ * @type {boolean|undefined}
6003
+ */
6004
+ google.maps.places.AutocompleteOptions.prototype.strictBounds;
6005
+
6006
+ /**
6007
+ * @type {Array<string>|undefined}
5964
6008
  */
5965
6009
  google.maps.places.AutocompleteOptions.prototype.types;
5966
6010
 
5967
6011
  /**
5968
- * @interface
6012
+ * @record
5969
6013
  */
5970
6014
  google.maps.places.AutocompletePrediction = function() {};
5971
6015
 
@@ -6014,17 +6058,17 @@ google.maps.places.AutocompleteService.prototype.getPlacePredictions = function(
6014
6058
  google.maps.places.AutocompleteService.prototype.getQueryPredictions = function(request, callback) {};
6015
6059
 
6016
6060
  /**
6017
- * @interface
6061
+ * @record
6018
6062
  */
6019
6063
  google.maps.places.AutocompletionRequest = function() {};
6020
6064
 
6021
6065
  /**
6022
- * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral}
6066
+ * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|undefined}
6023
6067
  */
6024
6068
  google.maps.places.AutocompletionRequest.prototype.bounds;
6025
6069
 
6026
6070
  /**
6027
- * @type {google.maps.places.ComponentRestrictions}
6071
+ * @type {google.maps.places.ComponentRestrictions|undefined}
6028
6072
  */
6029
6073
  google.maps.places.AutocompletionRequest.prototype.componentRestrictions;
6030
6074
 
@@ -6034,7 +6078,7 @@ google.maps.places.AutocompletionRequest.prototype.componentRestrictions;
6034
6078
  google.maps.places.AutocompletionRequest.prototype.input;
6035
6079
 
6036
6080
  /**
6037
- * @type {google.maps.LatLng}
6081
+ * @type {google.maps.LatLng|undefined}
6038
6082
  */
6039
6083
  google.maps.places.AutocompletionRequest.prototype.location;
6040
6084
 
@@ -6044,22 +6088,22 @@ google.maps.places.AutocompletionRequest.prototype.location;
6044
6088
  google.maps.places.AutocompletionRequest.prototype.offset;
6045
6089
 
6046
6090
  /**
6047
- * @type {number}
6091
+ * @type {number|undefined}
6048
6092
  */
6049
6093
  google.maps.places.AutocompletionRequest.prototype.radius;
6050
6094
 
6051
6095
  /**
6052
- * @type {Array<string>}
6096
+ * @type {Array<string>|undefined}
6053
6097
  */
6054
6098
  google.maps.places.AutocompletionRequest.prototype.types;
6055
6099
 
6056
6100
  /**
6057
- * @interface
6101
+ * @record
6058
6102
  */
6059
6103
  google.maps.places.ComponentRestrictions = function() {};
6060
6104
 
6061
6105
  /**
6062
- * @type {string}
6106
+ * @type {string|Array<string>}
6063
6107
  */
6064
6108
  google.maps.places.ComponentRestrictions.prototype.country;
6065
6109
 
@@ -6094,7 +6138,7 @@ google.maps.places.PlaceAspectRating.prototype.rating;
6094
6138
  google.maps.places.PlaceAspectRating.prototype.type;
6095
6139
 
6096
6140
  /**
6097
- * @interface
6141
+ * @record
6098
6142
  */
6099
6143
  google.maps.places.PlaceDetailsRequest = function() {};
6100
6144
 
@@ -6104,7 +6148,7 @@ google.maps.places.PlaceDetailsRequest = function() {};
6104
6148
  google.maps.places.PlaceDetailsRequest.prototype.placeId;
6105
6149
 
6106
6150
  /**
6107
- * @interface
6151
+ * @record
6108
6152
  */
6109
6153
  google.maps.places.PlaceGeometry = function() {};
6110
6154
 
@@ -6114,12 +6158,12 @@ google.maps.places.PlaceGeometry = function() {};
6114
6158
  google.maps.places.PlaceGeometry.prototype.location;
6115
6159
 
6116
6160
  /**
6117
- * @type {google.maps.LatLngBounds}
6161
+ * @type {google.maps.LatLngBounds|undefined}
6118
6162
  */
6119
6163
  google.maps.places.PlaceGeometry.prototype.viewport;
6120
6164
 
6121
6165
  /**
6122
- * @interface
6166
+ * @record
6123
6167
  */
6124
6168
  google.maps.places.PlacePhoto = function() {};
6125
6169
 
@@ -6145,7 +6189,7 @@ google.maps.places.PlacePhoto.prototype.width;
6145
6189
  google.maps.places.PlacePhoto.prototype.getUrl = function(opts) {};
6146
6190
 
6147
6191
  /**
6148
- * @interface
6192
+ * @record
6149
6193
  */
6150
6194
  google.maps.places.PlaceResult = function() {};
6151
6195
 
@@ -6195,7 +6239,7 @@ google.maps.places.PlaceResult.prototype.international_phone_number;
6195
6239
  google.maps.places.PlaceResult.prototype.name;
6196
6240
 
6197
6241
  /**
6198
- * @type {boolean}
6242
+ * @type {boolean|undefined}
6199
6243
  */
6200
6244
  google.maps.places.PlaceResult.prototype.permanently_closed;
6201
6245
 
@@ -6295,57 +6339,57 @@ google.maps.places.PlaceSearchPagination.prototype.hasNextPage;
6295
6339
  google.maps.places.PlaceSearchPagination.prototype.nextPage = function() {};
6296
6340
 
6297
6341
  /**
6298
- * @interface
6342
+ * @record
6299
6343
  */
6300
6344
  google.maps.places.PlaceSearchRequest = function() {};
6301
6345
 
6302
6346
  /**
6303
- * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral}
6347
+ * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|undefined}
6304
6348
  */
6305
6349
  google.maps.places.PlaceSearchRequest.prototype.bounds;
6306
6350
 
6307
6351
  /**
6308
- * @type {string}
6352
+ * @type {string|undefined}
6309
6353
  */
6310
6354
  google.maps.places.PlaceSearchRequest.prototype.keyword;
6311
6355
 
6312
6356
  /**
6313
- * @type {google.maps.LatLng|google.maps.LatLngLiteral}
6357
+ * @type {google.maps.LatLng|google.maps.LatLngLiteral|undefined}
6314
6358
  */
6315
6359
  google.maps.places.PlaceSearchRequest.prototype.location;
6316
6360
 
6317
6361
  /**
6318
- * @type {number}
6362
+ * @type {number|undefined}
6319
6363
  */
6320
6364
  google.maps.places.PlaceSearchRequest.prototype.maxPriceLevel;
6321
6365
 
6322
6366
  /**
6323
- * @type {number}
6367
+ * @type {number|undefined}
6324
6368
  */
6325
6369
  google.maps.places.PlaceSearchRequest.prototype.minPriceLevel;
6326
6370
 
6327
6371
  /**
6328
- * @type {string}
6372
+ * @type {string|undefined}
6329
6373
  */
6330
6374
  google.maps.places.PlaceSearchRequest.prototype.name;
6331
6375
 
6332
6376
  /**
6333
- * @type {boolean}
6377
+ * @type {boolean|undefined}
6334
6378
  */
6335
6379
  google.maps.places.PlaceSearchRequest.prototype.openNow;
6336
6380
 
6337
6381
  /**
6338
- * @type {number}
6382
+ * @type {number|undefined}
6339
6383
  */
6340
6384
  google.maps.places.PlaceSearchRequest.prototype.radius;
6341
6385
 
6342
6386
  /**
6343
- * @type {google.maps.places.RankBy}
6387
+ * @type {google.maps.places.RankBy|undefined}
6344
6388
  */
6345
6389
  google.maps.places.PlaceSearchRequest.prototype.rankBy;
6346
6390
 
6347
6391
  /**
6348
- * @type {string}
6392
+ * @type {string|undefined}
6349
6393
  */
6350
6394
  google.maps.places.PlaceSearchRequest.prototype.type;
6351
6395
 
@@ -6365,7 +6409,7 @@ google.maps.places.PlacesService.prototype.getDetails = function(request, callba
6365
6409
  /**
6366
6410
  * @param {google.maps.places.PlaceSearchRequest|Object.<string>} request
6367
6411
  * @param {function(Array<google.maps.places.PlaceResult>, google.maps.places.PlacesServiceStatus,
6368
- google.maps.places.PlaceSearchPagination)} callback
6412
+ google.maps.places.PlaceSearchPagination)} callback
6369
6413
  * @return {undefined}
6370
6414
  */
6371
6415
  google.maps.places.PlacesService.prototype.nearbySearch = function(request, callback) {};
@@ -6380,7 +6424,7 @@ google.maps.places.PlacesService.prototype.radarSearch = function(request, callb
6380
6424
  /**
6381
6425
  * @param {google.maps.places.TextSearchRequest|Object.<string>} request
6382
6426
  * @param {function(Array<google.maps.places.PlaceResult>, google.maps.places.PlacesServiceStatus,
6383
- google.maps.places.PlaceSearchPagination)} callback
6427
+ google.maps.places.PlaceSearchPagination)} callback
6384
6428
  * @return {undefined}
6385
6429
  */
6386
6430
  google.maps.places.PlacesService.prototype.textSearch = function(request, callback) {};
@@ -6398,7 +6442,7 @@ google.maps.places.PlacesServiceStatus = {
6398
6442
  };
6399
6443
 
6400
6444
  /**
6401
- * @interface
6445
+ * @record
6402
6446
  */
6403
6447
  google.maps.places.PredictionSubstring = function() {};
6404
6448
 
@@ -6413,7 +6457,7 @@ google.maps.places.PredictionSubstring.prototype.length;
6413
6457
  google.maps.places.PredictionSubstring.prototype.offset;
6414
6458
 
6415
6459
  /**
6416
- * @interface
6460
+ * @record
6417
6461
  */
6418
6462
  google.maps.places.PredictionTerm = function() {};
6419
6463
 
@@ -6428,7 +6472,7 @@ google.maps.places.PredictionTerm.prototype.offset;
6428
6472
  google.maps.places.PredictionTerm.prototype.value;
6429
6473
 
6430
6474
  /**
6431
- * @interface
6475
+ * @record
6432
6476
  */
6433
6477
  google.maps.places.QueryAutocompletePrediction = function() {};
6434
6478
 
@@ -6443,7 +6487,7 @@ google.maps.places.QueryAutocompletePrediction.prototype.description;
6443
6487
  google.maps.places.QueryAutocompletePrediction.prototype.matched_substrings;
6444
6488
 
6445
6489
  /**
6446
- * @type {string}
6490
+ * @type {string|undefined}
6447
6491
  */
6448
6492
  google.maps.places.QueryAutocompletePrediction.prototype.place_id;
6449
6493
 
@@ -6453,12 +6497,12 @@ google.maps.places.QueryAutocompletePrediction.prototype.place_id;
6453
6497
  google.maps.places.QueryAutocompletePrediction.prototype.terms;
6454
6498
 
6455
6499
  /**
6456
- * @interface
6500
+ * @record
6457
6501
  */
6458
6502
  google.maps.places.QueryAutocompletionRequest = function() {};
6459
6503
 
6460
6504
  /**
6461
- * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral}
6505
+ * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|undefined}
6462
6506
  */
6463
6507
  google.maps.places.QueryAutocompletionRequest.prototype.bounds;
6464
6508
 
@@ -6468,7 +6512,7 @@ google.maps.places.QueryAutocompletionRequest.prototype.bounds;
6468
6512
  google.maps.places.QueryAutocompletionRequest.prototype.input;
6469
6513
 
6470
6514
  /**
6471
- * @type {google.maps.LatLng}
6515
+ * @type {google.maps.LatLng|undefined}
6472
6516
  */
6473
6517
  google.maps.places.QueryAutocompletionRequest.prototype.location;
6474
6518
 
@@ -6478,42 +6522,42 @@ google.maps.places.QueryAutocompletionRequest.prototype.location;
6478
6522
  google.maps.places.QueryAutocompletionRequest.prototype.offset;
6479
6523
 
6480
6524
  /**
6481
- * @type {number}
6525
+ * @type {number|undefined}
6482
6526
  */
6483
6527
  google.maps.places.QueryAutocompletionRequest.prototype.radius;
6484
6528
 
6485
6529
  /**
6486
- * @interface
6530
+ * @record
6487
6531
  */
6488
6532
  google.maps.places.RadarSearchRequest = function() {};
6489
6533
 
6490
6534
  /**
6491
- * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral}
6535
+ * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|undefined}
6492
6536
  */
6493
6537
  google.maps.places.RadarSearchRequest.prototype.bounds;
6494
6538
 
6495
6539
  /**
6496
- * @type {string}
6540
+ * @type {string|undefined}
6497
6541
  */
6498
6542
  google.maps.places.RadarSearchRequest.prototype.keyword;
6499
6543
 
6500
6544
  /**
6501
- * @type {google.maps.LatLng|google.maps.LatLngLiteral}
6545
+ * @type {google.maps.LatLng|google.maps.LatLngLiteral|undefined}
6502
6546
  */
6503
6547
  google.maps.places.RadarSearchRequest.prototype.location;
6504
6548
 
6505
6549
  /**
6506
- * @type {string}
6550
+ * @type {string|undefined}
6507
6551
  */
6508
6552
  google.maps.places.RadarSearchRequest.prototype.name;
6509
6553
 
6510
6554
  /**
6511
- * @type {number}
6555
+ * @type {number|undefined}
6512
6556
  */
6513
6557
  google.maps.places.RadarSearchRequest.prototype.radius;
6514
6558
 
6515
6559
  /**
6516
- * @type {string}
6560
+ * @type {string|undefined}
6517
6561
  */
6518
6562
  google.maps.places.RadarSearchRequest.prototype.type;
6519
6563
 
@@ -6552,7 +6596,7 @@ google.maps.places.SearchBox.prototype.getPlaces = function() {};
6552
6596
  google.maps.places.SearchBox.prototype.setBounds = function(bounds) {};
6553
6597
 
6554
6598
  /**
6555
- * @interface
6599
+ * @record
6556
6600
  */
6557
6601
  google.maps.places.SearchBoxOptions = function() {};
6558
6602
 
@@ -6562,32 +6606,32 @@ google.maps.places.SearchBoxOptions = function() {};
6562
6606
  google.maps.places.SearchBoxOptions.prototype.bounds;
6563
6607
 
6564
6608
  /**
6565
- * @interface
6609
+ * @record
6566
6610
  */
6567
6611
  google.maps.places.TextSearchRequest = function() {};
6568
6612
 
6569
6613
  /**
6570
- * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral}
6614
+ * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|undefined}
6571
6615
  */
6572
6616
  google.maps.places.TextSearchRequest.prototype.bounds;
6573
6617
 
6574
6618
  /**
6575
- * @type {google.maps.LatLng|google.maps.LatLngLiteral}
6619
+ * @type {google.maps.LatLng|google.maps.LatLngLiteral|undefined}
6576
6620
  */
6577
6621
  google.maps.places.TextSearchRequest.prototype.location;
6578
6622
 
6579
6623
  /**
6580
- * @type {string}
6624
+ * @type {string|undefined}
6581
6625
  */
6582
6626
  google.maps.places.TextSearchRequest.prototype.query;
6583
6627
 
6584
6628
  /**
6585
- * @type {number}
6629
+ * @type {number|undefined}
6586
6630
  */
6587
6631
  google.maps.places.TextSearchRequest.prototype.radius;
6588
6632
 
6589
6633
  /**
6590
- * @type {string}
6634
+ * @type {string|undefined}
6591
6635
  */
6592
6636
  google.maps.places.TextSearchRequest.prototype.type;
6593
6637
 
@@ -6633,7 +6677,7 @@ google.maps.visualization.HeatmapLayer.prototype.setMap = function(map) {};
6633
6677
  google.maps.visualization.HeatmapLayer.prototype.setOptions = function(options) {};
6634
6678
 
6635
6679
  /**
6636
- * @interface
6680
+ * @record
6637
6681
  */
6638
6682
  google.maps.visualization.HeatmapLayerOptions = function() {};
6639
6683
 
@@ -6673,7 +6717,7 @@ google.maps.visualization.HeatmapLayerOptions.prototype.opacity;
6673
6717
  google.maps.visualization.HeatmapLayerOptions.prototype.radius;
6674
6718
 
6675
6719
  /**
6676
- * @interface
6720
+ * @record
6677
6721
  */
6678
6722
  google.maps.visualization.WeightedLocation = function() {};
6679
6723
 
@@ -6686,4 +6730,3 @@ google.maps.visualization.WeightedLocation.prototype.location;
6686
6730
  * @type {number}
6687
6731
  */
6688
6732
  google.maps.visualization.WeightedLocation.prototype.weight;
6689
-