Skip to content

Commit

Permalink
Merge pull request #432 from thetorpedodog/patch-1
Browse files Browse the repository at this point in the history
<google-map-poly>: Fully specify LatLng type name.
  • Loading branch information
aomarks authored Nov 8, 2018
2 parents 12c10af + fb793e7 commit 65c597b
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 65c597b

Please sign in to comment.