Skip to content

Commit

Permalink
fix: OSMDroidMapsProvider Marker getPosition
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Jan 10, 2024
1 parent 15ddfdd commit 02efbc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ public void setTag(Object tag) {
@Override
public LatLng getPosition() {
GeoPoint pos = this.marker.getPosition();
return new LatLng(pos.getLatitude(), pos.getLatitude());
return new LatLng(pos.getLatitude(), pos.getLongitude());
}

@Override
Expand Down

0 comments on commit 02efbc3

Please sign in to comment.