Skip to content

Commit

Permalink
Merge pull request #47 from mym0404/fix/android-commands
Browse files Browse the repository at this point in the history
fix(android): screenToCoordinate wrong argument order
  • Loading branch information
mym0404 committed May 22, 2024
2 parents 404e62c + e28cd9e commit 8107c45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ class NaverMapScreenToCoordinateEvent(
surfaceId: Int,
viewId: Int,
private val isValid: Boolean,
private val longitude: Double,
private val latitude: Double,
private val longitude: Double,
) : Event<NaverMapScreenToCoordinateEvent>(surfaceId, viewId) {
override fun getEventName(): String = EVENT_NAME

Expand Down
3 changes: 2 additions & 1 deletion example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,10 @@ export default function App() {
longitude={126.349895729}
radius={50000}
color={'#f2f'}
isHidden
outlineColor={'#aaa'}
outlineWidth={2}
globalZIndex={1}
globalZIndex={-1}
onTap={() => console.log('hi')}
/>
{/*<NaverMapPolygonOverlay*/}
Expand Down

0 comments on commit 8107c45

Please sign in to comment.