Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

<google-map-poly>: Fully specify LatLng type name. #432

Merged
merged 1 commit into from
Nov 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions google-map-poly.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@
* initially or when they are changed.
*
* @event google-map-poly-path-built
* @param {google.maps.MVCArray.<LatLng>} path The poly path.
* @param {google.maps.MVCArray.<google.maps.LatLng>} path The poly path.
*/

/**
* Fired when the user finishes adding vertices to the poly. The host component can use the
* provided path to rebuild its list of points.
*
* @event google-map-poly-path-updated
* @param {google.maps.MVCArray.<LatLng>} path The poly path.
* @param {google.maps.MVCArray.<google.maps.LatLng>} path The poly path.
*/

/**
Expand Down Expand Up @@ -159,7 +159,7 @@
/**
* An array of the Google Maps LatLng objects that define the poly shape.
*
* @type google.maps.MVCArray.<LatLng>
* @type google.maps.MVCArray.<google.maps.LatLng>
*/
path: {
type: Object,
Expand Down