Skip to content

Commit

Permalink
fix(SebmGoogleMapMarker): remove unused fitBounds
Browse files Browse the repository at this point in the history
  • Loading branch information
sebholstein committed Oct 23, 2016
1 parent ae0590e commit d625ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/directives/google-map-marker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ let markerId = 0;
selector: 'sebm-google-map-marker',
inputs: [
'latitude', 'longitude', 'title', 'label', 'draggable: markerDraggable', 'iconUrl',
'openInfoWindow', 'fitBounds', 'opacity', 'visible', 'zIndex'
'openInfoWindow', 'opacity', 'visible', 'zIndex'
],
outputs: ['markerClick', 'dragEnd', 'mouseOver', 'mouseOut']
})
Expand Down

2 comments on commit d625ab6

@trungvose
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SebastianM How I can use the fitBounds once you have removed it already?

@michaelpwilson
Copy link

@michaelpwilson michaelpwilson commented on d625ab6 Nov 23, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@trungk18 this has only been removed from the <sebm-google-map-marker> directive, which the fitBounds attribute would be unused.

fitBounds is only valid for the <sebm-google-map> directive.

Please sign in to comment.