Skip to content

Latest commit

 

History

History
543 lines (335 loc) · 32.7 KB

CHANGELOG.md

File metadata and controls

543 lines (335 loc) · 32.7 KB

Bug Fixes

  • AgmCircle: clickable input (7468bb4)
  • AgmPolygon: fix editable input (4b1b42d), closes #990
  • AgmPolyline: fix doubleclick output (4caeb0d), closes #1041

Features

Two new NPM packages!

  • @agm/snazzy-info-window for Snazzy Info Window support with AGM
  • @agm/js-marker-clusterer for clustered markers support with AGM

Detailed feature list:

  • add clustered markers support (5cbc515), closes #1044
  • support snazzy-info-window (1205c96)
  • AgmDataLayer: add loadGeoJson method (128c8f3), closes #1003
  • AgmMap: recentering for triggerResize (faea24d), closes #789 #976
  • AgmMarker: add clickable support (fec8b01), closes #994
  • GoogleMapsAPIWrapper: add panBy method (1afb152)

Please read the BREAKING CHANGES below!

Bug Fixes

Features

BREAKING CHANGES

The project and NPM package name changes:

Old name: angular2-google-maps New NPM pkg name: @agm/core

To have a consistent naming pattern, we also change the component/directive names:

Old class name / old selector New class name / new selector
SebmGoogleMap / sebm-google-map AgmMap / agm-map
SebmGoogleMapCircle / sebm-google-map-circle AgmCircle / agm-circle
SebmGoogleMapInfoWindow / sebm-google-map-info-window AgmInfoWindow / agm-info-window
SebmGoogleMapKmlLayer / sebm-google-map-kml-layer AgmKmlLayer / agm-kml-layer
SebmGoogleMapMarker / sebm-google-map-marker AgmMarker / agm-marker
SebmGoogleMapPolygon / sebm-map-polygon AgmPolygon / agm-polygon
SebmGoogleMapPolyline / sebm-google-map-polyline AgmPolyline / agm-polyline
SebmGoogleMapPolylinePoint / sebm-google-map-polyline-point AgmPolylinePoint / agm-polyline-point

You can simply migrate by search/replace these class/selector names.

The package structure also changes. The root directory now contains esm code (ES5 code with ES2015 modules).

A CommonJS compatible format and TS are not part of the package any more!
This change aligns with structure of the @angular packages.

The styling of the maps is now more intuitive. To style the map, please use the agm-map element (or a custom class or ID) directly.

The .sebm-google-map-container css class is deprecated and will be gone with the next version.

The .sebm.google-map-container-inner is now called .agm-map-container-inner. .sebm-google-map-container-inner is depcrecated and will be gone with the next version.

Bug Fixes

Features

  • Support KML Layer (4d2a5d5), closes #734
  • SebmGoogleMap: support maxZoom and minZoom (0789a17)

BREAKING CHANGES

  • core.umd.js: The files under /esm are ES5 (before: ES2015) based with ES2015 modules. In the real world, this should not cause troubles.

0.16.0 violet-sun (2016-11-07)

Bug Fixes

  • SebmGoogleMapPolyline: fix private member state (758d3e0)
  • SebmGoogleMapMarker: fix private member state (648856d)
  • SebmGoogleMapMarker: remove unused fitBounds (d625ab6)

Features

BREAKING CHANGES

  • provideLazyMapsAPILoaderConfig is gone. Please use the AgmCoreModule#forRoot method instead.

  • LazyMapsAPILoaderConfig is gone and is now a token named LAZY_MAPS_API_CONFIG. Please use the AgmCoreModule#forRoot method instead.

0.15.0 urban-filly (2016-09-15)

Bug Fixes

Features

0.14.0 tundra-snow (2016-09-02)

Bug Fixes

  • core: dont import full RxJS library (84dfaaa), closes #619
  • SebmGoogleMapCircle: circleDblClick output (6224dc3), closes #582

Code Refactoring

  • core: remove GOOGLE_MAPS_PROVIDERS (1995d4a), closes #607
  • core: remove GOOGLE_MAPS_DIRECTIVES (05544d5), closes #608

Features

BREAKING CHANGES

  • core: previously deprecated GOOGLE_MAPS_DIRECTIVES was removed. Please use AgmCoreModule instead.
  • core: previously deprecated GOOGLE_MAPS_PROVIDERS was removed. Please use AgmCoreModule instead.

0.13.0 onyx-piranha (2016-08-15)

Bug Fixes

  • SebmGoogleMap: zoom listener (b379c73)
  • SebmGoogleMapMarker: cleanup event listeners (c20d005)
  • SebmGoogleMapMarker: set marker title (9544a00), closes #505

Features

Bug Fixes

  • LazyMapsAPILoader: use OpaqueTokens for globs (78daae0), closes #436 #441

Features

Bug Fixes

  • SebmGoogleMap: remove event listeners on destroy (223d0de), closes #425
  • tests: fix path in unit tests (f03f04f)

Code Refactoring

  • GoogleMapsAPIWrapper: rename getMap method (f2084dd), closes #407

Features

BREAKING CHANGES

  • SebmGoogleMap:

The latitude, longitude and zoom inputs of must be of type number now. Strings are not supported any more.

Example:

Old (now unsupported way):

<sebm-google-map latitude="33" longitude="22" zoom="8">...

New:

<sebm-google-map [latitude]="33" [longitude]="22" [zoom]="8">...
  • GoogleMapsAPIWrapper: getMap() is now called getNativeMap().

  • ANGULAR2_GOOGLE_MAPS_PROVIDERS is now called GOOGLE_MAPS_PROVIDERS.

  • ANGULAR2_GOOGLE_MAPS_DIRECTIVES is now called GOOGLE_MAPS_DIRECTIVES.

The SystemJS based bundle located in the bundles/ dir is gone! Please use the new UMD bundle located under core/core.umd.js.

SystemJS example:

SystemJS.config({
	packages: {
		'angular2-google-maps/core': { main:  'core.umd.js', defaultExtension: 'js' }
	}
})

Features

0.9.0 icy-lama (2016-03-22)

Bug Fixes

  • LazyMapsAPILoader: use default API version 3 (426da66), closes #195

Features

  • Expose GoogleMapsAPIWrapper (8999da2)
  • Expose InfoWindowManager (7c95e55)
  • Expose MarkerManager (0726ddb)
  • GoogleMapsAPIWrapper: expose map instance (69e3c0e), closes #161
  • LazyMapsAPILoaderConfig: add clientId (652b711), closes #198
  • SebmGoogleMap: support backgroundColor opt (bda7ca8), closes #233
  • SebmGoogleMap: support centerChange event (20ad62b), closes #212
  • SebmGoogleMap: support draggableCursor opt (00d26e5), closes #234
  • SebmGoogleMap: support draggingCursor opt (553842a), closes #235
  • SebmGoogleMap: support keyboardShortcuts opt (1a14570), closes #236
  • SebmGoogleMap: support scrollwheel mapOption (e19d99b), closes #232 #159 #211
  • SebmGoogleMap: support zoomControl opt (a5b909a), closes #237
  • SebmGoogleMap: triggering resize events (b27ae46), closes #166 #188
  • SebmGoogleMapInfoWindow: Basic support (a3df794), closes #150 #238
  • support angular2.0.0-beta.11 (e187ae6)
  • SebmGoogleMapMarker: add custom icon support (13ec2a1), closes #123 #224

0.8.1 (2016-02-28)

Bug Fixes

0.8.0 clean-phantom (2016-02-21)

Bug Fixes

  • SebmGogleMapMarker: label updates (e2b9923)

Features

  • rename MapMouseEvent to MouseEvent (978e881), closes #148
  • support angular beta.7 (66ccfe7), closes #144
  • LazyMapsAPILoader: support libraries query param (a94662f), closes #114
  • LazyMapsAPILoader: support region & language (a127a79), closes #102 #125
  • SebmGoogleMap: support disableDefaultUI MapOption (a5c9002), closes #103 #113
  • SebmGoogleMapMarker: add draggable option (a8ba736), closes #70 #147
  • SebmGoogleMapMarker: support dragend event (8f60c54), closes #71 #149

BREAKING CHANGES

  • MapMouseEvent is now called MouseEvent. Please update your imports:

before:

import {MapMouseEvent} from 'angular2-google-maps/core';

after:

import {MouseEvent} from 'angular2-google-maps/core';

This release was incorrect; replaced with 0.8.0

0.6.1 shiny-neutron (2016-01-30)

Bug Fixes

  • SebmGoogleMap: show map when zoom is not set (b975c76), closes #81
  • SebmGoogleMapMarker: run click event in zone (2a3e390)
  • SebMGoogleMapMarker: 0 value for lat/lng (e65568e), closes #82 #101

Features

  • angular2: support angular2-beta.2 (592648c)

Bug Fixes

  • SebmGoogleMap: use ngOnInit to support angular 2.0.0-beta.1 (1c25cb9), closes #79 #76

Features

  • LazyMapsAPILoader: make Google Maps API version configurable (728960d)

Bug Fixes

  • package: align peer & JSPM dependencies with ng2 beta.0 (4fcd9af)

Features

  • change file naming convention (5a1ac76)
  • packaging: change package structure (77d634e)
  • SebmGoogleMap: support map click event (c18640c)
  • SebmGoogleMap: support disableDoubleClickZoom mapOption (fff0a29)
  • SebmGoogleMap: support double-click event (5f1ae68)
  • SebmGoogleMap: support right click event (eab715e)

BREAKING CHANGES

  • When you import a directive directly, you have to change the import path:

Old:

import {SebmGoogleMap} from 'angular2-google-maps/directives/google_map';

New:

import {SebmGoogleMap} from 'angular2-google-maps/directives/google-map';
  • The module name has changed. So you have to change your import path.
    old: angular2_google_maps/angular2_google_maps
    new: angular2-google-maps/core
  • ES5 files that can be consumed using CommonJS are now in the root directory (old path was /cjs/angular2_google_maps)
  • The ES6 files directory has changed: Old dir: /es6/angular2_google_maps
    New dir: /es6
  • The TypeScript files directory has changed:
    Old dir: /ts/angular2_google_maps
    New dir: /ts
  • The /typings directory with bundled typings was deleted.
    (Typings are now in the root directory seperated by file)

0.4.0 (2015-12-17)

Features

  • export ANGULAR2_GOOGLE_MAPS_DIRECTIVES (83bcd9f)
  • angular2: support 2.0.0-beta.0 (0bae421), closes #51
  • SebmGoogleMapMarker: support click event (2926de7)

BREAKING CHANGES

  • angular2_google_maps/components module renamed to angular2_google_maps/directives

0.3.0 (2015-12-10)

Features

  • angular2: add angular2.0.0-alpha.52 support (8a1d813)

0.2.0 (2015-11-19)

Features

  • GoogleMapsAPILoading: lazy load mechanism (d05e6d3)
  • sebmGoogleMapMarker: support basic label (f2e1257)

BREAKING CHANGES

  • GoogleMapsAPILoading:
    • You have to add the ANGULAR2_GOOGLE_MAPS_PROVIDERS to your bootstrap() method:
import {ANGULAR2_GOOGLE_MAPS_PROVIDERS} from 'angular2_google_maps/angular2_google_maps';
bootstrap(myComponent, [ANGULAR2_GOOGLE_MAPS_PROVIDERS]);
  • Google Maps API v3 gets loaded automatically now by default. So you can remove the Google Maps API script tag from your page. Alternatively, you can tell angular2-google-maps that the Google Maps API is already loaded on the page with this configuration:
bootstrap(App, [
  ANGULAR2_GOOGLE_MAPS_PROVIDERS,
  // If you don't want to let angular2-google-maps load the Google Maps API script,
  // you can use the NoOpMapsAPILoader like this:
  provide(MapsAPILoader, {useClass: NoOpMapsAPILoader})
])

0.1.0 (2015-11-07)

Features

  • components: add sebm-google-map component (120a5df)
  • marker: add basic marker support (ec644a4)