Skip to content

Commit

Permalink
fix(SebmGoogleMapMarker): longitude changes
Browse files Browse the repository at this point in the history
Longitude changes were not considered.

fixes #163
closes #167
  • Loading branch information
sebholstein committed Feb 25, 2016
1 parent 2c95969 commit e4ca50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/directives/google-map-marker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class SebmGoogleMapMarker implements OnDestroy,
this._addEventListeners();
return;
}
if (changes['latitude'] || changes['logitude']) {
if (changes['latitude'] || changes['longitude']) {
this._markerManager.updateMarkerPosition(this);
}
if (changes['title']) {
Expand Down

0 comments on commit e4ca50b

Please sign in to comment.