🤖 Merge PR #46668 fix(googlemaps): add missing LatLngLiteral from elevation requests by @jpoehnelt

This commit is contained in:
Justin Poehnelt 2020-08-12 17:51:38 -06:00 committed by GitHub
parent c7a768fca6
commit bcbb438661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,11 +11,11 @@ declare namespace google.maps {
}
interface LocationElevationRequest {
locations: LatLng[];
locations: Array<LatLngLiteral | LatLng>;
}
interface PathElevationRequest {
path?: LatLng[];
path?: Array<LatLngLiteral | LatLng>;
samples?: number;
}