ng2-heremaps
Version:
Here Maps for Angular 6
36 lines • 1.16 kB
JavaScript
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
import { BaseMapsApiLoader, LAZY_LOADER_OPTIONS } from './loaders/base-maps-api-loader';
import { LazyMapsApiLoader } from './loaders/lazy-maps-api-loader';
export { HereMapsManager } from './services/maps-manager';
/**
* The following list shows the approximate level of detail
* you can expect to see at each zoom level
*/
export const /** @type {?} */ ZoomLevel = {
World: 1,
Continent: 5,
City: 10,
Streets: 15,
Buildings: 20
};
/**
* Animations that can be played on a marker.
* @see https://developers.google.com/maps/documentation/javascript/reference?hl=ru#Animation
*/
export const /** @type {?} */ Animation = {
/**
* Marker bounces until animation is stopped.
*/
BOUNCE: 1,
/**
* Marker falls from the top of the map ending with a small bounce.
*/
DROP: 2
};
export { BaseMapsApiLoader, LazyMapsApiLoader, LAZY_LOADER_OPTIONS };
export { NoopMapsApiLoader } from './loaders/noop-maps-api-loader';
export { MapUIService } from './services/map-ui.service';
//# sourceMappingURL=services.js.map