fix(googlemaps): Expose 'type' property in GoogleMapsLatLngBounds #693 (#694)

This commit is contained in:
Colin Frick 2016-10-14 01:00:15 +02:00 committed by Ibrahim Hadeed
parent 43c8592b40
commit 74a252b324

View File

@ -885,6 +885,7 @@ export class GoogleMapsLatLngBounds {
@InstanceProperty get northeast(): GoogleMapsLatLng { return; }
@InstanceProperty get southwest(): GoogleMapsLatLng { return; }
@InstanceProperty get type(): string { return; }
constructor(southwestOrArrayOfLatLng: GoogleMapsLatLng | GoogleMapsLatLng[], northeast?: GoogleMapsLatLng) {
let args = !!northeast ? [southwestOrArrayOfLatLng, northeast] : southwestOrArrayOfLatLng;