Skip to content

Commit

Permalink
fix(google-maps): correctly apply CapacitorGoogleMapsPoint y value (#…
Browse files Browse the repository at this point in the history
…1800)

Co-authored-by: jcesarmobile <[email protected]>
  • Loading branch information
antarsaha9 and jcesarmobile committed Sep 27, 2023
1 parent 5c4547d commit 73c57c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class CapacitorGoogleMapsPoint() {
}

if(fromJSONObject.has("y")) {
this.x = fromJSONObject.getDouble("y").toFloat()
this.y = fromJSONObject.getDouble("y").toFloat()
}
}

Expand Down

0 comments on commit 73c57c1

Please sign in to comment.