@googlemap-react/core
Version:
Easier-to-use Google Map & React integration
26 lines (25 loc) • 1.68 kB
TypeScript
/// <reference types="googlemaps" />
import { GoogleMapLibrary, GroundOverlayOptions, HeatmapLayerOptions } from './types';
export declare const NYC_LATLNG: google.maps.LatLngLiteral;
export declare const NYC_POLYGON: google.maps.LatLngLiteral[];
export declare const NYC_RECTANGLE: google.maps.LatLngBoundsLiteral;
export declare const DEFAULT_CIRCLE_OPTIONS: google.maps.CircleOptions;
export declare const DEFAULT_DRAWING_MANAGER_OPTIONS: google.maps.drawing.DrawingManagerOptions;
export declare const DEFAULT_GROUND_OVERLAY_OPTIONS: GroundOverlayOptions;
export declare const DEFAULT_HEAT_MAP_OPTIONS: HeatmapLayerOptions;
export declare const DEFAULT_INFO_WINDOW_OPTIONS: google.maps.InfoWindowOptions;
export declare const DEFAULT_KML_LAYER_OPTIONS: google.maps.KmlLayerOptions;
export declare const DEFAULT_MAP_OPTIONS: google.maps.MapOptions;
export declare const DEFAULT_MAP_STYLE: {
height: string;
width: string;
};
export declare const DEFAULT_MARKER_OPTIONS: google.maps.MarkerOptions;
export declare const DEFAULT_POLYGON_OPTIONS: google.maps.PolygonOptions;
export declare const DEFAULT_POLYLINE_OPTIONS: google.maps.PolylineOptions;
export declare const DEFAULT_RECTANGLE_OPTIONS: google.maps.RectangleOptions;
export declare const DEFAULT_SEARCH_BOX_OPTIONS: google.maps.places.SearchBoxOptions;
export declare const DEFAULT_AUTOCOMPLETE_OPTIONS: google.maps.places.AutocompleteOptions;
export declare const DEFAULT_STREET_VIEW_OPTIONS: google.maps.StreetViewPanoramaOptions;
export declare const GOOGLE_MAP_BASE_URI = "https://maps.googleapis.com/maps/api/js";
export declare const GOOGLE_MAP_LIBRARY_NAMES: GoogleMapLibrary[];