UNPKG

google-closure-compiler

Version:

Check, compile, optimize and compress Javascript with Closure-Compiler

2,677 lines (2,196 loc) • 126 kB
/* * Copyright 2010 The Closure Compiler Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @fileoverview Externs for the Google Maps v3.13 API. * @see http://code.google.com/apis/maps/documentation/javascript/reference.html * @externs */ google.maps = {}; /** * @enum {number} */ google.maps.Animation = { BOUNCE: 1, DROP: 2 }; /** * @extends {google.maps.MVCObject} * @constructor */ google.maps.BicyclingLayer = function() {}; /** * @nosideeffects * @return {google.maps.Map} */ google.maps.BicyclingLayer.prototype.getMap = function() {}; /** * @param {google.maps.Map} map * @return {undefined} */ google.maps.BicyclingLayer.prototype.setMap = function(map) {}; /** * @param {(google.maps.CircleOptions|Object.<string>)=} opt_opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.Circle = function(opt_opts) {}; /** * @nosideeffects * @return {google.maps.LatLngBounds} */ google.maps.Circle.prototype.getBounds = function() {}; /** * @nosideeffects * @return {google.maps.LatLng} */ google.maps.Circle.prototype.getCenter = function() {}; /** * @nosideeffects * @return {boolean} */ google.maps.Circle.prototype.getDraggable = function() {}; /** * @nosideeffects * @return {boolean} */ google.maps.Circle.prototype.getEditable = function() {}; /** * @nosideeffects * @return {google.maps.Map} */ google.maps.Circle.prototype.getMap = function() {}; /** * @nosideeffects * @return {number} */ google.maps.Circle.prototype.getRadius = function() {}; /** * @nosideeffects * @return {boolean} */ google.maps.Circle.prototype.getVisible = function() {}; /** * @param {google.maps.LatLng} center * @return {undefined} */ google.maps.Circle.prototype.setCenter = function(center) {}; /** * @param {boolean} draggable * @return {undefined} */ google.maps.Circle.prototype.setDraggable = function(draggable) {}; /** * @param {boolean} editable * @return {undefined} */ google.maps.Circle.prototype.setEditable = function(editable) {}; /** * @param {google.maps.Map} map * @return {undefined} */ google.maps.Circle.prototype.setMap = function(map) {}; /** * @param {google.maps.CircleOptions|Object.<string>} options * @return {undefined} */ google.maps.Circle.prototype.setOptions = function(options) {}; /** * @param {number} radius * @return {undefined} */ google.maps.Circle.prototype.setRadius = function(radius) {}; /** * @param {boolean} visible * @return {undefined} */ google.maps.Circle.prototype.setVisible = function(visible) {}; /** * @interface */ google.maps.CircleOptions = function() {}; /** * @type {google.maps.LatLng} */ google.maps.CircleOptions.prototype.center; /** * @type {boolean} */ google.maps.CircleOptions.prototype.clickable; /** * @type {boolean} */ google.maps.CircleOptions.prototype.draggable; /** * @type {boolean} */ google.maps.CircleOptions.prototype.editable; /** * @type {string} */ google.maps.CircleOptions.prototype.fillColor; /** * @type {number} */ google.maps.CircleOptions.prototype.fillOpacity; /** * @type {google.maps.Map} */ google.maps.CircleOptions.prototype.map; /** * @type {number} */ google.maps.CircleOptions.prototype.radius; /** * @type {string} */ google.maps.CircleOptions.prototype.strokeColor; /** * @type {number} */ google.maps.CircleOptions.prototype.strokeOpacity; /** * @type {google.maps.StrokePosition} */ google.maps.CircleOptions.prototype.strokePosition; /** * @type {number} */ google.maps.CircleOptions.prototype.strokeWeight; /** * @type {boolean} */ google.maps.CircleOptions.prototype.visible; /** * @type {number} */ google.maps.CircleOptions.prototype.zIndex; /** * @enum {number} */ google.maps.ControlPosition = { BOTTOM_CENTER: 1, BOTTOM_LEFT: 2, BOTTOM_RIGHT: 3, LEFT_BOTTOM: 4, LEFT_CENTER: 5, LEFT_TOP: 6, RIGHT_BOTTOM: 7, RIGHT_CENTER: 8, RIGHT_TOP: 9, TOP_CENTER: 10, TOP_LEFT: 11, TOP_RIGHT: 12 }; /** * @interface */ google.maps.DirectionsLeg = function() {}; /** * @type {google.maps.Time} */ google.maps.DirectionsLeg.prototype.arrival_time; /** * @type {google.maps.Time} */ google.maps.DirectionsLeg.prototype.departure_time; /** * @type {google.maps.Distance} */ google.maps.DirectionsLeg.prototype.distance; /** * @type {google.maps.Duration} */ google.maps.DirectionsLeg.prototype.duration; /** * @type {google.maps.Duration} */ google.maps.DirectionsLeg.prototype.duration_in_traffic; /** * @type {string} */ google.maps.DirectionsLeg.prototype.end_address; /** * @type {google.maps.LatLng} */ google.maps.DirectionsLeg.prototype.end_location; /** * @type {string} */ google.maps.DirectionsLeg.prototype.start_address; /** * @type {google.maps.LatLng} */ google.maps.DirectionsLeg.prototype.start_location; /** * @type {Array.<google.maps.DirectionsStep>} */ google.maps.DirectionsLeg.prototype.steps; /** * @type {Array.<google.maps.LatLng>} */ google.maps.DirectionsLeg.prototype.via_waypoints; /** * @param {(google.maps.DirectionsRendererOptions|Object.<string>)=} opt_opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.DirectionsRenderer = function(opt_opts) {}; /** * @nosideeffects * @return {google.maps.DirectionsResult} */ google.maps.DirectionsRenderer.prototype.getDirections = function() {}; /** * @nosideeffects * @return {google.maps.Map} */ google.maps.DirectionsRenderer.prototype.getMap = function() {}; /** * @nosideeffects * @return {Node} */ google.maps.DirectionsRenderer.prototype.getPanel = function() {}; /** * @nosideeffects * @return {number} */ google.maps.DirectionsRenderer.prototype.getRouteIndex = function() {}; /** * @param {google.maps.DirectionsResult} directions * @return {undefined} */ google.maps.DirectionsRenderer.prototype.setDirections = function(directions) {}; /** * @param {google.maps.Map} map * @return {undefined} */ google.maps.DirectionsRenderer.prototype.setMap = function(map) {}; /** * @param {google.maps.DirectionsRendererOptions|Object.<string>} options * @return {undefined} */ google.maps.DirectionsRenderer.prototype.setOptions = function(options) {}; /** * @param {Node} panel * @return {undefined} */ google.maps.DirectionsRenderer.prototype.setPanel = function(panel) {}; /** * @param {number} routeIndex * @return {undefined} */ google.maps.DirectionsRenderer.prototype.setRouteIndex = function(routeIndex) {}; /** * @interface */ google.maps.DirectionsRendererOptions = function() {}; /** * @type {google.maps.DirectionsResult} */ google.maps.DirectionsRendererOptions.prototype.directions; /** * @type {boolean} */ google.maps.DirectionsRendererOptions.prototype.draggable; /** * @type {boolean} */ google.maps.DirectionsRendererOptions.prototype.hideRouteList; /** * @type {google.maps.InfoWindow} */ google.maps.DirectionsRendererOptions.prototype.infoWindow; /** * @type {google.maps.Map} */ google.maps.DirectionsRendererOptions.prototype.map; /** * @type {google.maps.MarkerOptions|Object.<string>} */ google.maps.DirectionsRendererOptions.prototype.markerOptions; /** * @type {Node} */ google.maps.DirectionsRendererOptions.prototype.panel; /** * @type {google.maps.PolylineOptions|Object.<string>} */ google.maps.DirectionsRendererOptions.prototype.polylineOptions; /** * @type {boolean} */ google.maps.DirectionsRendererOptions.prototype.preserveViewport; /** * @type {number} */ google.maps.DirectionsRendererOptions.prototype.routeIndex; /** * @type {boolean} */ google.maps.DirectionsRendererOptions.prototype.suppressBicyclingLayer; /** * @type {boolean} */ google.maps.DirectionsRendererOptions.prototype.suppressInfoWindows; /** * @type {boolean} */ google.maps.DirectionsRendererOptions.prototype.suppressMarkers; /** * @type {boolean} */ google.maps.DirectionsRendererOptions.prototype.suppressPolylines; /** * @interface */ google.maps.DirectionsRequest = function() {}; /** * @type {boolean} */ google.maps.DirectionsRequest.prototype.avoidHighways; /** * @type {boolean} */ google.maps.DirectionsRequest.prototype.avoidTolls; /** * @type {google.maps.LatLng|string} */ google.maps.DirectionsRequest.prototype.destination; /** * @type {boolean} */ google.maps.DirectionsRequest.prototype.durationInTraffic; /** * @type {boolean} */ google.maps.DirectionsRequest.prototype.optimizeWaypoints; /** * @type {google.maps.LatLng|string} */ google.maps.DirectionsRequest.prototype.origin; /** * @type {boolean} */ google.maps.DirectionsRequest.prototype.provideRouteAlternatives; /** * @type {string} */ google.maps.DirectionsRequest.prototype.region; /** * @type {google.maps.TransitOptions|Object.<string>} */ google.maps.DirectionsRequest.prototype.transitOptions; /** * @type {google.maps.TravelMode} */ google.maps.DirectionsRequest.prototype.travelMode; /** * @type {google.maps.UnitSystem} */ google.maps.DirectionsRequest.prototype.unitSystem; /** * @type {Array.<google.maps.DirectionsWaypoint>} */ google.maps.DirectionsRequest.prototype.waypoints; /** * @interface */ google.maps.DirectionsResult = function() {}; /** * @type {Array.<google.maps.DirectionsRoute>} */ google.maps.DirectionsResult.prototype.routes; /** * @interface */ google.maps.DirectionsRoute = function() {}; /** * @type {google.maps.LatLngBounds} */ google.maps.DirectionsRoute.prototype.bounds; /** * @type {string} */ google.maps.DirectionsRoute.prototype.copyrights; /** * @type {Array.<google.maps.DirectionsLeg>} */ google.maps.DirectionsRoute.prototype.legs; /** * @type {Array.<google.maps.LatLng>} */ google.maps.DirectionsRoute.prototype.overview_path; /** * @type {Array.<string>} */ google.maps.DirectionsRoute.prototype.warnings; /** * @type {Array.<number>} */ google.maps.DirectionsRoute.prototype.waypoint_order; /** * @constructor */ google.maps.DirectionsService = function() {}; /** * @param {google.maps.DirectionsRequest|Object.<string>} request * @param {function(google.maps.DirectionsResult, google.maps.DirectionsStatus)} callback * @return {undefined} */ google.maps.DirectionsService.prototype.route = function(request, callback) {}; /** * @enum {string} */ google.maps.DirectionsStatus = { INVALID_REQUEST: '1', MAX_WAYPOINTS_EXCEEDED: '2', NOT_FOUND: '3', OK: '4', OVER_QUERY_LIMIT: '5', REQUEST_DENIED: '6', UNKNOWN_ERROR: '7', ZERO_RESULTS: '' }; /** * @interface */ google.maps.DirectionsStep = function() {}; /** * @type {google.maps.Distance} */ google.maps.DirectionsStep.prototype.distance; /** * @type {google.maps.Duration} */ google.maps.DirectionsStep.prototype.duration; /** * @type {google.maps.LatLng} */ google.maps.DirectionsStep.prototype.end_location; /** * @type {string} */ google.maps.DirectionsStep.prototype.instructions; /** * @type {Array.<google.maps.LatLng>} */ google.maps.DirectionsStep.prototype.path; /** * @type {google.maps.LatLng} */ google.maps.DirectionsStep.prototype.start_location; /** * @type {google.maps.DirectionsStep} */ google.maps.DirectionsStep.prototype.steps; /** * @type {google.maps.TransitDetails} */ google.maps.DirectionsStep.prototype.transit; /** * @type {google.maps.TravelMode} */ google.maps.DirectionsStep.prototype.travel_mode; /** * @interface */ google.maps.DirectionsWaypoint = function() {}; /** * @type {google.maps.LatLng|string} */ google.maps.DirectionsWaypoint.prototype.location; /** * @type {boolean} */ google.maps.DirectionsWaypoint.prototype.stopover; /** * @interface */ google.maps.Distance = function() {}; /** * @type {string} */ google.maps.Distance.prototype.text; /** * @type {number} */ google.maps.Distance.prototype.value; /** * @enum {string} */ google.maps.DistanceMatrixElementStatus = { NOT_FOUND: '1', OK: '2', ZERO_RESULTS: '3' }; /** * @interface */ google.maps.DistanceMatrixRequest = function() {}; /** * @type {boolean} */ google.maps.DistanceMatrixRequest.prototype.avoidHighways; /** * @type {boolean} */ google.maps.DistanceMatrixRequest.prototype.avoidTolls; /** * @type {Array.<google.maps.LatLng>|Array.<string>} */ google.maps.DistanceMatrixRequest.prototype.destinations; /** * @type {boolean} */ google.maps.DistanceMatrixRequest.prototype.durationInTraffic; /** * @type {Array.<google.maps.LatLng>|Array.<string>} */ google.maps.DistanceMatrixRequest.prototype.origins; /** * @type {string} */ google.maps.DistanceMatrixRequest.prototype.region; /** * @type {google.maps.TravelMode} */ google.maps.DistanceMatrixRequest.prototype.travelMode; /** * @type {google.maps.UnitSystem} */ google.maps.DistanceMatrixRequest.prototype.unitSystem; /** * @interface */ google.maps.DistanceMatrixResponse = function() {}; /** * @type {Array.<string>} */ google.maps.DistanceMatrixResponse.prototype.destinationAddresses; /** * @type {Array.<string>} */ google.maps.DistanceMatrixResponse.prototype.originAddresses; /** * @type {Array.<google.maps.DistanceMatrixResponseRow>} */ google.maps.DistanceMatrixResponse.prototype.rows; /** * @interface */ google.maps.DistanceMatrixResponseElement = function() {}; /** * @type {google.maps.Distance} */ google.maps.DistanceMatrixResponseElement.prototype.distance; /** * @type {google.maps.Duration} */ google.maps.DistanceMatrixResponseElement.prototype.duration; /** * @type {google.maps.DistanceMatrixElementStatus} */ google.maps.DistanceMatrixResponseElement.prototype.status; /** * @interface */ google.maps.DistanceMatrixResponseRow = function() {}; /** * @type {Array.<google.maps.DistanceMatrixResponseElement>} */ google.maps.DistanceMatrixResponseRow.prototype.elements; /** * @constructor */ google.maps.DistanceMatrixService = function() {}; /** * @param {google.maps.DistanceMatrixRequest|Object.<string>} request * @param {function(google.maps.DistanceMatrixResponse, google.maps.DistanceMatrixStatus)} callback * @return {undefined} */ google.maps.DistanceMatrixService.prototype.getDistanceMatrix = function(request, callback) {}; /** * @enum {string} */ google.maps.DistanceMatrixStatus = { INVALID_REQUEST: '1', MAX_DIMENSIONS_EXCEEDED: '2', MAX_ELEMENTS_EXCEEDED: '3', OK: '4', OVER_QUERY_LIMIT: '5', REQUEST_DENIED: '6', UNKNOWN_ERROR: '' }; /** * @interface */ google.maps.Duration = function() {}; /** * @type {string} */ google.maps.Duration.prototype.text; /** * @type {number} */ google.maps.Duration.prototype.value; /** * @interface */ google.maps.ElevationResult = function() {}; /** * @type {number} */ google.maps.ElevationResult.prototype.elevation; /** * @type {google.maps.LatLng} */ google.maps.ElevationResult.prototype.location; /** * @type {number} */ google.maps.ElevationResult.prototype.resolution; /** * @constructor */ google.maps.ElevationService = function() {}; /** * @param {google.maps.PathElevationRequest|Object.<string>} request * @param {function(Array.<google.maps.ElevationResult>, google.maps.ElevationStatus)} callback * @return {undefined} */ google.maps.ElevationService.prototype.getElevationAlongPath = function(request, callback) {}; /** * @param {google.maps.LocationElevationRequest|Object.<string>} request * @param {function(Array.<google.maps.ElevationResult>, google.maps.ElevationStatus)} callback * @return {undefined} */ google.maps.ElevationService.prototype.getElevationForLocations = function(request, callback) {}; /** * @enum {string} */ google.maps.ElevationStatus = { INVALID_REQUEST: '1', OK: '2', OVER_QUERY_LIMIT: '3', REQUEST_DENIED: '4', UNKNOWN_ERROR: '' }; /** * @interface */ google.maps.FusionTablesCell = function() {}; /** * @type {string} */ google.maps.FusionTablesCell.prototype.columnName; /** * @type {string} */ google.maps.FusionTablesCell.prototype.value; /** * @constructor */ google.maps.FusionTablesHeatmap = function() {}; /** * @type {boolean} */ google.maps.FusionTablesHeatmap.prototype.enabled; /** * @param {google.maps.FusionTablesLayerOptions|Object.<string>} options * @extends {google.maps.MVCObject} * @constructor */ google.maps.FusionTablesLayer = function(options) {}; /** * @nosideeffects * @return {google.maps.Map} */ google.maps.FusionTablesLayer.prototype.getMap = function() {}; /** * @param {google.maps.Map} map * @return {undefined} */ google.maps.FusionTablesLayer.prototype.setMap = function(map) {}; /** * @param {google.maps.FusionTablesLayerOptions|Object.<string>} options * @return {undefined} */ google.maps.FusionTablesLayer.prototype.setOptions = function(options) {}; /** * @interface */ google.maps.FusionTablesLayerOptions = function() {}; /** * @type {boolean} */ google.maps.FusionTablesLayerOptions.prototype.clickable; /** * @type {google.maps.FusionTablesHeatmap} */ google.maps.FusionTablesLayerOptions.prototype.heatmap; /** * @type {google.maps.Map} */ google.maps.FusionTablesLayerOptions.prototype.map; /** * @type {google.maps.FusionTablesQuery} */ google.maps.FusionTablesLayerOptions.prototype.query; /** * @type {Array.<google.maps.FusionTablesStyle>} */ google.maps.FusionTablesLayerOptions.prototype.styles; /** * @type {boolean} */ google.maps.FusionTablesLayerOptions.prototype.suppressInfoWindows; /** * @constructor */ google.maps.FusionTablesMarkerOptions = function() {}; /** * @type {string} */ google.maps.FusionTablesMarkerOptions.prototype.iconName; /** * @interface */ google.maps.FusionTablesMouseEvent = function() {}; /** * @type {string} */ google.maps.FusionTablesMouseEvent.prototype.infoWindowHtml; /** * @type {google.maps.LatLng} */ google.maps.FusionTablesMouseEvent.prototype.latLng; /** * @type {google.maps.Size} */ google.maps.FusionTablesMouseEvent.prototype.pixelOffset; /** * @type {Object.<google.maps.FusionTablesCell>} */ google.maps.FusionTablesMouseEvent.prototype.row; /** * @constructor */ google.maps.FusionTablesPolygonOptions = function() {}; /** * @type {string} */ google.maps.FusionTablesPolygonOptions.prototype.fillColor; /** * @type {number} */ google.maps.FusionTablesPolygonOptions.prototype.fillOpacity; /** * @type {string} */ google.maps.FusionTablesPolygonOptions.prototype.strokeColor; /** * @type {number} */ google.maps.FusionTablesPolygonOptions.prototype.strokeOpacity; /** * @type {number} */ google.maps.FusionTablesPolygonOptions.prototype.strokeWeight; /** * @constructor */ google.maps.FusionTablesPolylineOptions = function() {}; /** * @type {string} */ google.maps.FusionTablesPolylineOptions.prototype.strokeColor; /** * @type {number} */ google.maps.FusionTablesPolylineOptions.prototype.strokeOpacity; /** * @type {number} */ google.maps.FusionTablesPolylineOptions.prototype.strokeWeight; /** * @constructor */ google.maps.FusionTablesQuery = function() {}; /** * @type {string} */ google.maps.FusionTablesQuery.prototype.from; /** * @type {number} */ google.maps.FusionTablesQuery.prototype.limit; /** * @type {number} */ google.maps.FusionTablesQuery.prototype.offset; /** * @type {string} */ google.maps.FusionTablesQuery.prototype.orderBy; /** * @type {string} */ google.maps.FusionTablesQuery.prototype.select; /** * @type {string} */ google.maps.FusionTablesQuery.prototype.where; /** * @constructor */ google.maps.FusionTablesStyle = function() {}; /** * @type {google.maps.FusionTablesMarkerOptions|Object.<string>} */ google.maps.FusionTablesStyle.prototype.markerOptions; /** * @type {google.maps.FusionTablesPolygonOptions|Object.<string>} */ google.maps.FusionTablesStyle.prototype.polygonOptions; /** * @type {google.maps.FusionTablesPolylineOptions|Object.<string>} */ google.maps.FusionTablesStyle.prototype.polylineOptions; /** * @type {string} */ google.maps.FusionTablesStyle.prototype.where; /** * @constructor */ google.maps.Geocoder = function() {}; /** * @param {google.maps.GeocoderRequest|Object.<string>} request * @param {function(Array.<google.maps.GeocoderResult>, google.maps.GeocoderStatus)} callback * @return {undefined} */ google.maps.Geocoder.prototype.geocode = function(request, callback) {}; /** * @constructor */ google.maps.GeocoderAddressComponent = function() {}; /** * @type {string} */ google.maps.GeocoderAddressComponent.prototype.long_name; /** * @type {string} */ google.maps.GeocoderAddressComponent.prototype.short_name; /** * @type {Array.<string>} */ google.maps.GeocoderAddressComponent.prototype.types; /** * @interface */ google.maps.GeocoderComponentRestrictions = function() {}; /** * @type {string} */ google.maps.GeocoderComponentRestrictions.prototype.administrativeArea; /** * @type {string} */ google.maps.GeocoderComponentRestrictions.prototype.country; /** * @type {string} */ google.maps.GeocoderComponentRestrictions.prototype.locality; /** * @type {string} */ google.maps.GeocoderComponentRestrictions.prototype.postalCode; /** * @type {string} */ google.maps.GeocoderComponentRestrictions.prototype.route; /** * @constructor */ google.maps.GeocoderGeometry = function() {}; /** * @type {google.maps.LatLngBounds} */ google.maps.GeocoderGeometry.prototype.bounds; /** * @type {google.maps.LatLng} */ google.maps.GeocoderGeometry.prototype.location; /** * @type {google.maps.GeocoderLocationType} */ google.maps.GeocoderGeometry.prototype.location_type; /** * @type {google.maps.LatLngBounds} */ google.maps.GeocoderGeometry.prototype.viewport; /** * @enum {string} */ google.maps.GeocoderLocationType = { APPROXIMATE: '1', GEOMETRIC_CENTER: '2', RANGE_INTERPOLATED: '3', ROOFTOP: '4' }; /** * @interface */ google.maps.GeocoderRequest = function() {}; /** * @type {string} */ google.maps.GeocoderRequest.prototype.address; /** * @type {google.maps.LatLngBounds} */ google.maps.GeocoderRequest.prototype.bounds; /** * @type {google.maps.LatLng} */ google.maps.GeocoderRequest.prototype.location; /** * @type {string} */ google.maps.GeocoderRequest.prototype.region; /** * @constructor */ google.maps.GeocoderResult = function() {}; /** * @type {Array.<google.maps.GeocoderAddressComponent>} */ google.maps.GeocoderResult.prototype.address_components; /** * @type {string} */ google.maps.GeocoderResult.prototype.formatted_address; /** * @type {google.maps.GeocoderGeometry} */ google.maps.GeocoderResult.prototype.geometry; /** * @type {boolean} */ google.maps.GeocoderResult.prototype.partial_match; /** * @type {Array.<string>} */ google.maps.GeocoderResult.prototype.postcode_localities; /** * @type {Array.<string>} */ google.maps.GeocoderResult.prototype.types; /** * @enum {string} */ google.maps.GeocoderStatus = { ERROR: '1', INVALID_REQUEST: '2', OK: '3', OVER_QUERY_LIMIT: '4', REQUEST_DENIED: '5', UNKNOWN_ERROR: '6', ZERO_RESULTS: '' }; /** * @param {string} url * @param {google.maps.LatLngBounds} bounds * @param {(google.maps.GroundOverlayOptions|Object.<string>)=} opt_opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.GroundOverlay = function(url, bounds, opt_opts) {}; /** * @nosideeffects * @return {google.maps.LatLngBounds} */ google.maps.GroundOverlay.prototype.getBounds = function() {}; /** * @nosideeffects * @return {google.maps.Map} */ google.maps.GroundOverlay.prototype.getMap = function() {}; /** * @nosideeffects * @return {number} */ google.maps.GroundOverlay.prototype.getOpacity = function() {}; /** * @nosideeffects * @return {string} */ google.maps.GroundOverlay.prototype.getUrl = function() {}; /** * @param {google.maps.Map} map * @return {undefined} */ google.maps.GroundOverlay.prototype.setMap = function(map) {}; /** * @param {number} opacity * @return {undefined} */ google.maps.GroundOverlay.prototype.setOpacity = function(opacity) {}; /** * @interface */ google.maps.GroundOverlayOptions = function() {}; /** * @type {boolean} */ google.maps.GroundOverlayOptions.prototype.clickable; /** * @type {google.maps.Map} */ google.maps.GroundOverlayOptions.prototype.map; /** * @type {number} */ google.maps.GroundOverlayOptions.prototype.opacity; /** * @interface */ google.maps.Icon = function() {}; /** * @type {google.maps.Point} */ google.maps.Icon.prototype.anchor; /** * @type {google.maps.Point} */ google.maps.Icon.prototype.origin; /** * @type {google.maps.Size} */ google.maps.Icon.prototype.scaledSize; /** * @type {google.maps.Size} */ google.maps.Icon.prototype.size; /** * @type {string} */ google.maps.Icon.prototype.url; /** * @interface */ google.maps.IconSequence = function() {}; /** * @type {boolean} */ google.maps.IconSequence.prototype.fixedRotation; /** * @type {google.maps.Symbol} */ google.maps.IconSequence.prototype.icon; /** * @type {string} */ google.maps.IconSequence.prototype.offset; /** * @type {string} */ google.maps.IconSequence.prototype.repeat; /** * @param {google.maps.ImageMapTypeOptions|Object.<string>} opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.ImageMapType = function(opts) {}; /** * @nosideeffects * @return {number} */ google.maps.ImageMapType.prototype.getOpacity = function() {}; /** * @param {number} opacity * @return {undefined} */ google.maps.ImageMapType.prototype.setOpacity = function(opacity) {}; /** * @interface */ google.maps.ImageMapTypeOptions = function() {}; /** * @type {string} */ google.maps.ImageMapTypeOptions.prototype.alt; /** * @type {function(google.maps.Point, number):string} */ google.maps.ImageMapTypeOptions.prototype.getTileUrl; /** * @type {number} */ google.maps.ImageMapTypeOptions.prototype.maxZoom; /** * @type {number} */ google.maps.ImageMapTypeOptions.prototype.minZoom; /** * @type {string} */ google.maps.ImageMapTypeOptions.prototype.name; /** * @type {number} */ google.maps.ImageMapTypeOptions.prototype.opacity; /** * @type {google.maps.Size} */ google.maps.ImageMapTypeOptions.prototype.tileSize; /** * @param {(google.maps.InfoWindowOptions|Object.<string>)=} opt_opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.InfoWindow = function(opt_opts) {}; /** * @return {undefined} */ google.maps.InfoWindow.prototype.close = function() {}; /** * @nosideeffects * @return {string|Node} */ google.maps.InfoWindow.prototype.getContent = function() {}; /** * @nosideeffects * @return {google.maps.LatLng} */ google.maps.InfoWindow.prototype.getPosition = function() {}; /** * @nosideeffects * @return {number} */ google.maps.InfoWindow.prototype.getZIndex = function() {}; /** * @param {(google.maps.Map|google.maps.StreetViewPanorama)=} opt_map * @param {google.maps.MVCObject=} opt_anchor * @return {undefined} */ google.maps.InfoWindow.prototype.open = function(opt_map, opt_anchor) {}; /** * @param {string|Node} content * @return {undefined} */ google.maps.InfoWindow.prototype.setContent = function(content) {}; /** * @param {google.maps.InfoWindowOptions|Object.<string>} options * @return {undefined} */ google.maps.InfoWindow.prototype.setOptions = function(options) {}; /** * @param {google.maps.LatLng} position * @return {undefined} */ google.maps.InfoWindow.prototype.setPosition = function(position) {}; /** * @param {number} zIndex * @return {undefined} */ google.maps.InfoWindow.prototype.setZIndex = function(zIndex) {}; /** * @interface */ google.maps.InfoWindowOptions = function() {}; /** * @type {string|Node} */ google.maps.InfoWindowOptions.prototype.content; /** * @type {boolean} */ google.maps.InfoWindowOptions.prototype.disableAutoPan; /** * @type {number} */ google.maps.InfoWindowOptions.prototype.maxWidth; /** * @type {google.maps.Size} */ google.maps.InfoWindowOptions.prototype.pixelOffset; /** * @type {google.maps.LatLng} */ google.maps.InfoWindowOptions.prototype.position; /** * @type {number} */ google.maps.InfoWindowOptions.prototype.zIndex; /** * @constructor */ google.maps.KmlAuthor = function() {}; /** * @type {string} */ google.maps.KmlAuthor.prototype.email; /** * @type {string} */ google.maps.KmlAuthor.prototype.name; /** * @type {string} */ google.maps.KmlAuthor.prototype.uri; /** * @constructor */ google.maps.KmlFeatureData = function() {}; /** * @type {google.maps.KmlAuthor} */ google.maps.KmlFeatureData.prototype.author; /** * @type {string} */ google.maps.KmlFeatureData.prototype.description; /** * @type {string} */ google.maps.KmlFeatureData.prototype.id; /** * @type {string} */ google.maps.KmlFeatureData.prototype.infoWindowHtml; /** * @type {string} */ google.maps.KmlFeatureData.prototype.name; /** * @type {string} */ google.maps.KmlFeatureData.prototype.snippet; /** * @param {(google.maps.KmlLayerOptions|Object.<string>)=} opt_opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.KmlLayer = function(opt_opts) {}; /** * @nosideeffects * @return {google.maps.LatLngBounds} */ google.maps.KmlLayer.prototype.getDefaultViewport = function() {}; /** * @nosideeffects * @return {google.maps.Map} */ google.maps.KmlLayer.prototype.getMap = function() {}; /** * @nosideeffects * @return {google.maps.KmlLayerMetadata} */ google.maps.KmlLayer.prototype.getMetadata = function() {}; /** * @nosideeffects * @return {google.maps.KmlLayerStatus} */ google.maps.KmlLayer.prototype.getStatus = function() {}; /** * @nosideeffects * @return {string} */ google.maps.KmlLayer.prototype.getUrl = function() {}; /** * @param {google.maps.Map} map * @return {undefined} */ google.maps.KmlLayer.prototype.setMap = function(map) {}; /** * @param {string} url * @return {undefined} */ google.maps.KmlLayer.prototype.setUrl = function(url) {}; /** * @constructor */ google.maps.KmlLayerMetadata = function() {}; /** * @type {google.maps.KmlAuthor} */ google.maps.KmlLayerMetadata.prototype.author; /** * @type {string} */ google.maps.KmlLayerMetadata.prototype.description; /** * @type {boolean} */ google.maps.KmlLayerMetadata.prototype.hasScreenOverlays; /** * @type {string} */ google.maps.KmlLayerMetadata.prototype.name; /** * @type {string} */ google.maps.KmlLayerMetadata.prototype.snippet; /** * @interface */ google.maps.KmlLayerOptions = function() {}; /** * @type {boolean} */ google.maps.KmlLayerOptions.prototype.clickable; /** * @type {google.maps.Map} */ google.maps.KmlLayerOptions.prototype.map; /** * @type {boolean} */ google.maps.KmlLayerOptions.prototype.preserveViewport; /** * @type {boolean} */ google.maps.KmlLayerOptions.prototype.suppressInfoWindows; /** * @type {string} */ google.maps.KmlLayerOptions.prototype.url; /** * @enum {string} */ google.maps.KmlLayerStatus = { DOCUMENT_NOT_FOUND: '1', DOCUMENT_TOO_LARGE: '2', FETCH_ERROR: '3', INVALID_DOCUMENT: '4', INVALID_REQUEST: '5', LIMITS_EXCEEDED: '6', OK: '7', TIMED_OUT: '8', UNKNOWN: '' }; /** * @constructor */ google.maps.KmlMouseEvent = function() {}; /** * @type {google.maps.KmlFeatureData} */ google.maps.KmlMouseEvent.prototype.featureData; /** * @type {google.maps.LatLng} */ google.maps.KmlMouseEvent.prototype.latLng; /** * @type {google.maps.Size} */ google.maps.KmlMouseEvent.prototype.pixelOffset; /** * @param {number} lat * @param {number} lng * @param {boolean=} opt_noWrap * @constructor */ google.maps.LatLng = function(lat, lng, opt_noWrap) {}; /** * @param {google.maps.LatLng} other * @return {boolean} */ google.maps.LatLng.prototype.equals = function(other) {}; /** * @return {number} */ google.maps.LatLng.prototype.lat = function() {}; /** * @return {number} */ google.maps.LatLng.prototype.lng = function() {}; /** * @return {string} */ google.maps.LatLng.prototype.toString = function() {}; /** * @param {number=} opt_precision * @return {string} */ google.maps.LatLng.prototype.toUrlValue = function(opt_precision) {}; /** * @param {google.maps.LatLng=} opt_sw * @param {google.maps.LatLng=} opt_ne * @constructor */ google.maps.LatLngBounds = function(opt_sw, opt_ne) {}; /** * @param {google.maps.LatLng} latLng * @return {boolean} */ google.maps.LatLngBounds.prototype.contains = function(latLng) {}; /** * @param {google.maps.LatLngBounds} other * @return {boolean} */ google.maps.LatLngBounds.prototype.equals = function(other) {}; /** * @param {google.maps.LatLng} point * @return {google.maps.LatLngBounds} */ google.maps.LatLngBounds.prototype.extend = function(point) {}; /** * @nosideeffects * @return {google.maps.LatLng} */ google.maps.LatLngBounds.prototype.getCenter = function() {}; /** * @nosideeffects * @return {google.maps.LatLng} */ google.maps.LatLngBounds.prototype.getNorthEast = function() {}; /** * @nosideeffects * @return {google.maps.LatLng} */ google.maps.LatLngBounds.prototype.getSouthWest = function() {}; /** * @param {google.maps.LatLngBounds} other * @return {boolean} */ google.maps.LatLngBounds.prototype.intersects = function(other) {}; /** * @return {boolean} */ google.maps.LatLngBounds.prototype.isEmpty = function() {}; /** * @return {google.maps.LatLng} */ google.maps.LatLngBounds.prototype.toSpan = function() {}; /** * @return {string} */ google.maps.LatLngBounds.prototype.toString = function() {}; /** * @param {number=} opt_precision * @return {string} */ google.maps.LatLngBounds.prototype.toUrlValue = function(opt_precision) {}; /** * @param {google.maps.LatLngBounds} other * @return {google.maps.LatLngBounds} */ google.maps.LatLngBounds.prototype.union = function(other) {}; /** * @interface */ google.maps.LocationElevationRequest = function() {}; /** * @type {Array.<google.maps.LatLng>} */ google.maps.LocationElevationRequest.prototype.locations; /** * @param {Array=} opt_array * @extends {google.maps.MVCObject} * @constructor */ google.maps.MVCArray = function(opt_array) {}; /** * @return {undefined} */ google.maps.MVCArray.prototype.clear = function() {}; /** * @param {function(?, number)} callback * @return {undefined} */ google.maps.MVCArray.prototype.forEach = function(callback) {}; /** * @nosideeffects * @return {Array} */ google.maps.MVCArray.prototype.getArray = function() {}; /** * @param {number} i * @return {*} */ google.maps.MVCArray.prototype.getAt = function(i) {}; /** * @nosideeffects * @return {number} */ google.maps.MVCArray.prototype.getLength = function() {}; /** * @param {number} i * @param {*} elem * @return {undefined} */ google.maps.MVCArray.prototype.insertAt = function(i, elem) {}; /** * @return {*} */ google.maps.MVCArray.prototype.pop = function() {}; /** * @param {*} elem * @return {number} */ google.maps.MVCArray.prototype.push = function(elem) {}; /** * @param {number} i * @return {*} */ google.maps.MVCArray.prototype.removeAt = function(i) {}; /** * @param {number} i * @param {*} elem * @return {undefined} */ google.maps.MVCArray.prototype.setAt = function(i, elem) {}; /** * @constructor */ google.maps.MVCObject = function() {}; /** * @param {string} eventName * @param {!Function} handler * @return {google.maps.MapsEventListener} */ google.maps.MVCObject.prototype.addListener = function(eventName, handler) {}; /** * @param {string} key * @param {google.maps.MVCObject} target * @param {?string=} opt_targetKey * @param {boolean=} opt_noNotify * @return {undefined} */ google.maps.MVCObject.prototype.bindTo = function(key, target, opt_targetKey, opt_noNotify) {}; /** * @param {string} key * @return {undefined} */ google.maps.MVCObject.prototype.changed = function(key) {}; /** * @param {string} key * @return {*} */ google.maps.MVCObject.prototype.get = function(key) {}; /** * @param {string} key * @return {undefined} */ google.maps.MVCObject.prototype.notify = function(key) {}; /** * @param {string} key * @param {?} value * @return {undefined} */ google.maps.MVCObject.prototype.set = function(key, value) {}; /** * @param {Object|undefined} values * @return {undefined} */ google.maps.MVCObject.prototype.setValues = function(values) {}; /** * @param {string} key * @return {undefined} */ google.maps.MVCObject.prototype.unbind = function(key) {}; /** * @return {undefined} */ google.maps.MVCObject.prototype.unbindAll = function() {}; /** * @param {Node} mapDiv * @param {(google.maps.MapOptions|Object.<string>)=} opt_opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.Map = function(mapDiv, opt_opts) {}; /** * @type {Array.<google.maps.MVCArray.<Node>>} */ google.maps.Map.prototype.controls; /** * @type {google.maps.MapTypeRegistry} */ google.maps.Map.prototype.mapTypes; /** * @type {google.maps.MVCArray.<google.maps.MapType>} */ google.maps.Map.prototype.overlayMapTypes; /** * @param {google.maps.LatLngBounds} bounds * @return {undefined} */ google.maps.Map.prototype.fitBounds = function(bounds) {}; /** * @nosideeffects * @return {google.maps.LatLngBounds} */ google.maps.Map.prototype.getBounds = function() {}; /** * @nosideeffects * @return {google.maps.LatLng} */ google.maps.Map.prototype.getCenter = function() {}; /** * @nosideeffects * @return {Node} */ google.maps.Map.prototype.getDiv = function() {}; /** * @nosideeffects * @return {number} */ google.maps.Map.prototype.getHeading = function() {}; /** * @nosideeffects * @return {google.maps.MapTypeId|string} */ google.maps.Map.prototype.getMapTypeId = function() {}; /** * @nosideeffects * @return {google.maps.Projection} */ google.maps.Map.prototype.getProjection = function() {}; /** * @nosideeffects * @return {google.maps.StreetViewPanorama} */ google.maps.Map.prototype.getStreetView = function() {}; /** * @nosideeffects * @return {number} */ google.maps.Map.prototype.getTilt = function() {}; /** * @nosideeffects * @return {number} */ google.maps.Map.prototype.getZoom = function() {}; /** * @param {number} x * @param {number} y * @return {undefined} */ google.maps.Map.prototype.panBy = function(x, y) {}; /** * @param {google.maps.LatLng} latLng * @return {undefined} */ google.maps.Map.prototype.panTo = function(latLng) {}; /** * @param {google.maps.LatLngBounds} latLngBounds * @return {undefined} */ google.maps.Map.prototype.panToBounds = function(latLngBounds) {}; /** * @param {google.maps.LatLng} latlng * @return {undefined} */ google.maps.Map.prototype.setCenter = function(latlng) {}; /** * @param {number} heading * @return {undefined} */ google.maps.Map.prototype.setHeading = function(heading) {}; /** * @param {google.maps.MapTypeId|string} mapTypeId * @return {undefined} */ google.maps.Map.prototype.setMapTypeId = function(mapTypeId) {}; /** * @param {google.maps.MapOptions|Object.<string>} options * @return {undefined} */ google.maps.Map.prototype.setOptions = function(options) {}; /** * @param {google.maps.StreetViewPanorama} panorama * @return {undefined} */ google.maps.Map.prototype.setStreetView = function(panorama) {}; /** * @param {number} tilt * @return {undefined} */ google.maps.Map.prototype.setTilt = function(tilt) {}; /** * @param {number} zoom * @return {undefined} */ google.maps.Map.prototype.setZoom = function(zoom) {}; /** * @extends {google.maps.MVCObject} * @constructor */ google.maps.MapCanvasProjection = function() {}; /** * @param {google.maps.Point} pixel * @param {boolean=} opt_nowrap * @return {google.maps.LatLng} */ google.maps.MapCanvasProjection.prototype.fromContainerPixelToLatLng = function(pixel, opt_nowrap) {}; /** * @param {google.maps.Point} pixel * @param {boolean=} opt_nowrap * @return {google.maps.LatLng} */ google.maps.MapCanvasProjection.prototype.fromDivPixelToLatLng = function(pixel, opt_nowrap) {}; /** * @param {google.maps.LatLng} latLng * @return {google.maps.Point} */ google.maps.MapCanvasProjection.prototype.fromLatLngToContainerPixel = function(latLng) {}; /** * @param {google.maps.LatLng} latLng * @return {google.maps.Point} */ google.maps.MapCanvasProjection.prototype.fromLatLngToDivPixel = function(latLng) {}; /** * @nosideeffects * @return {number} */ google.maps.MapCanvasProjection.prototype.getWorldWidth = function() {}; /** * @interface */ google.maps.MapOptions = function() {}; /** * @type {string} */ google.maps.MapOptions.prototype.backgroundColor; /** * @type {google.maps.LatLng} */ google.maps.MapOptions.prototype.center; /** * @type {boolean} */ google.maps.MapOptions.prototype.disableDefaultUI; /** * @type {boolean} */ google.maps.MapOptions.prototype.disableDoubleClickZoom; /** * @type {boolean} */ google.maps.MapOptions.prototype.draggable; /** * @type {string} */ google.maps.MapOptions.prototype.draggableCursor; /** * @type {string} */ google.maps.MapOptions.prototype.draggingCursor; /** * @type {number} */ google.maps.MapOptions.prototype.heading; /** * @type {boolean} */ google.maps.MapOptions.prototype.keyboardShortcuts; /** * @type {boolean} */ google.maps.MapOptions.prototype.mapMaker; /** * @type {boolean} */ google.maps.MapOptions.prototype.mapTypeControl; /** * @type {google.maps.MapTypeControlOptions|Object.<string>} */ google.maps.MapOptions.prototype.mapTypeControlOptions; /** * @type {google.maps.MapTypeId} */ google.maps.MapOptions.prototype.mapTypeId; /** * @type {number} */ google.maps.MapOptions.prototype.maxZoom; /** * @type {number} */ google.maps.MapOptions.prototype.minZoom; /** * @type {boolean} */ google.maps.MapOptions.prototype.noClear; /** * @type {boolean} */ google.maps.MapOptions.prototype.overviewMapControl; /** * @type {google.maps.OverviewMapControlOptions|Object.<string>} */ google.maps.MapOptions.prototype.overviewMapControlOptions; /** * @type {boolean} */ google.maps.MapOptions.prototype.panControl; /** * @type {google.maps.PanControlOptions|Object.<string>} */ google.maps.MapOptions.prototype.panControlOptions; /** * @type {boolean} */ google.maps.MapOptions.prototype.rotateControl; /** * @type {google.maps.RotateControlOptions|Object.<string>} */ google.maps.MapOptions.prototype.rotateControlOptions; /** * @type {boolean} */ google.maps.MapOptions.prototype.scaleControl; /** * @type {google.maps.ScaleControlOptions|Object.<string>} */ google.maps.MapOptions.prototype.scaleControlOptions; /** * @type {boolean} */ google.maps.MapOptions.prototype.scrollwheel; /** * @type {google.maps.StreetViewPanorama} */ google.maps.MapOptions.prototype.streetView; /** * @type {boolean} */ google.maps.MapOptions.prototype.streetViewControl; /** * @type {google.maps.StreetViewControlOptions|Object.<string>} */ google.maps.MapOptions.prototype.streetViewControlOptions; /** * @type {Array.<google.maps.MapTypeStyle>} */ google.maps.MapOptions.prototype.styles; /** * @type {number} */ google.maps.MapOptions.prototype.tilt; /** * @type {boolean} */ google.maps.visualRefresh; /** * @type {number} */ google.maps.MapOptions.prototype.zoom; /** * @type {boolean} */ google.maps.MapOptions.prototype.zoomControl; /** * @type {google.maps.ZoomControlOptions|Object.<string>} */ google.maps.MapOptions.prototype.zoomControlOptions; /** * @constructor */ google.maps.MapPanes = function() {}; /** * @type {Node} */ google.maps.MapPanes.prototype.floatPane; /** * @type {Node} */ google.maps.MapPanes.prototype.floatShadow; /** * @type {Node} */ google.maps.MapPanes.prototype.mapPane; /** * @type {Node} */ google.maps.MapPanes.prototype.overlayImage; /** * @type {Node} */ google.maps.MapPanes.prototype.overlayLayer; /** * @type {Node} */ google.maps.MapPanes.prototype.overlayMouseTarget; /** * @type {Node} */ google.maps.MapPanes.prototype.overlayShadow; /** * @interface */ google.maps.MapType = function() {}; /** * @type {string} */ google.maps.MapType.prototype.alt; /** * @type {number} */ google.maps.MapType.prototype.maxZoom; /** * @type {number} */ google.maps.MapType.prototype.minZoom; /** * @type {string} */ google.maps.MapType.prototype.name; /** * @type {google.maps.Projection} */ google.maps.MapType.prototype.projection; /** * @type {number} */ google.maps.MapType.prototype.radius; /** * @type {google.maps.Size} */ google.maps.MapType.prototype.tileSize; /** * @param {google.maps.Point} tileCoord * @param {number} zoom * @param {Document} ownerDocument * @return {Node} */ google.maps.MapType.prototype.getTile = function(tileCoord, zoom, ownerDocument) {}; /** * @param {Node} tile * @return {undefined} */ google.maps.MapType.prototype.releaseTile = function(tile) {}; /** * @interface */ google.maps.MapTypeControlOptions = function() {}; /** * @type {Array.<google.maps.MapTypeId>|Array.<string>} */ google.maps.MapTypeControlOptions.prototype.mapTypeIds; /** * @type {google.maps.ControlPosition} */ google.maps.MapTypeControlOptions.prototype.position; /** * @type {google.maps.MapTypeControlStyle} */ google.maps.MapTypeControlOptions.prototype.style; /** * @enum {number} */ google.maps.MapTypeControlStyle = { DEFAULT: 1, DROPDOWN_MENU: 2, HORIZONTAL_BAR: 3 }; /** * @enum {string} */ google.maps.MapTypeId = { HYBRID: '1', ROADMAP: '2', SATELLITE: '3', TERRAIN: '4' }; /** * @extends {google.maps.MVCObject} * @constructor */ google.maps.MapTypeRegistry = function() {}; /** * @param {string} id * @param {google.maps.MapType} mapType * @return {undefined} * @override */ google.maps.MapTypeRegistry.prototype.set = function(id, mapType) {}; /** * @interface */ google.maps.MapTypeStyle = function() {}; /** * @type {string} */ google.maps.MapTypeStyle.prototype.elementType; /** * @type {string} */ google.maps.MapTypeStyle.prototype.featureType; /** * @type {Array.<google.maps.MapTypeStyler>} */ google.maps.MapTypeStyle.prototype.stylers; /** * @interface */ google.maps.MapTypeStyler = function() {}; /** * @type {string} */ google.maps.MapTypeStyler.prototype.color; /** * @type {number} */ google.maps.MapTypeStyler.prototype.gamma; /** * @type {string} */ google.maps.MapTypeStyler.prototype.hue; /** * @type {boolean} */ google.maps.MapTypeStyler.prototype.invert_lightness; /** * @type {number} */ google.maps.MapTypeStyler.prototype.lightness; /** * @type {number} */ google.maps.MapTypeStyler.prototype.saturation; /** * @type {string} */ google.maps.MapTypeStyler.prototype.visibility; /** * @type {number} */ google.maps.MapTypeStyler.prototype.weight; /** * @constructor */ google.maps.MapsEventListener = function() {}; /** * @param {(google.maps.MarkerOptions|Object.<string>)=} opt_opts * @extends {google.maps.MVCObject} * @constructor */ google.maps.Marker = function(opt_opts) {}; /** * @nosideeffects * @return {?google.maps.Animation} */ google.maps.Marker.prototype.getAnimation = function() {}; /** * @nosideeffects * @return {boolean} */ google.maps.Marker.prototype.getClickable = function() {}; /** * @nosideeffects * @return {string} */ google.maps.Marker.prototype.getCursor = function() {}; /** * @nosideeffects * @return {boolean} */ google.maps.Marker.prototype.getDraggable = function() {}; /** * @nosideeffects * @return {boolean} */ google.maps.Marker.prototype.getFlat = function() {}; /** * @nosideeffects * @return {string|google.maps.Icon|google.maps.Symbol} */ google.maps.Marker.prototype.getIcon = function() {}; /** * @nosideeffects * @return {google.maps.Map|google.maps.StreetViewPanorama} */ google.maps.Marker.prototype.getMap = function() {}; /** * @nosideeffects * @return {google.maps.LatLng} */ google.maps.Marker.prototype.getPosition = function() {}; /** * @nosideeffects * @return {string|google.maps.Icon|google.maps.Symbol} */ google.maps.Marker.prototype.getShadow = function() {}; /** * @nosideeffects * @return {google.maps.MarkerShape} */ google.maps.Marker.prototype.getShape = function() {}; /** * @nosideeffects * @return {string} */ google.maps.Marker.prototype.getTitle = function() {}; /** * @nosideeffects * @return {boolean} */ google.maps.Marker.prototype.getVisible = function() {}; /** * @nosideeffects * @return {number} */ google.maps.Marker.prototype.getZIndex = function() {}; /** * @param {?google.maps.Animation} animation * @return {undefined} */ google.maps.Marker.prototype.setAnimation = function(animation) {}; /** * @param {boolean} flag * @return {undefined} */ google.maps.Marker.prototype.setClickable = function(flag) {}; /** * @param {string} cursor * @return {undefined} */ google.maps.Marker.prototype.setCursor = function(cursor) {}; /** * @param {?boolean} flag * @return {undefined} */ google.maps.Marker.prototype.setDraggable = function(flag) {}; /** * @param {boolean} flag * @return {undefined} */ google.maps.Marker.prototype.setFlat = function(flag) {}; /** * @param {string|google.maps.Icon|google.maps.Symbol} icon * @return {undefined} */ google.maps.Marker.prototype.setIcon = function(icon) {}; /** * @param {google.maps.Map|google.maps.StreetViewPanorama} map * @return {undefined} */ google.maps.Marker.prototype.setMap = function(map) {}; /** * @param {google.maps.MarkerOptions|Object.<string>} options * @return {undefined} */ google.maps.Marker.prototype.setOptions = function(options) {}; /** * @param {google.maps.LatLng} latlng * @return {undefined} */ goo