UNPKG

google-maps-ng2

Version:
44 lines (37 loc) 1.25 kB
export interface LoaderOptions { /** * The Google Maps API Key (see: * https://developers.google.com/maps/documentation/javascript/get-api-key) */ apiKey?: string; /** * Google Maps API version. */ apiVersion?: string | number; /** * Protocol used for the `<script>` tag. */ protocol?: string; /** * Host and Path used for the `<script>` tag. */ hostAndPath?: string; /** * Defines which Google Maps libraries should get loaded. */ libraries?: string[]; /** * The default bias for the map behavior is US. * If you wish to alter your application to serve different map tiles or bias the * application, you can overwrite the default behavior (US) by defining a `region`. * See https://developers.google.com/maps/documentation/javascript/basics#Region */ region?: string; /** * The Google Maps API uses the browser's preferred language when displaying * textual information. If you wish to overwrite this behavior and force the API * to use a given language, you can use this setting. * See https://developers.google.com/maps/documentation/javascript/basics#Language */ language?: string; }