Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ interface NaverMapViewProps {
latitude: number;
longitude: number;
zoom: number;
contentsRegion: [Coord, Coord, Coord, Coord, Coord]; // https://navermaps.github.io/android-map-sdk/reference/com/naver/maps/map/NaverMap.html#getContentRegion()
contentRegion: [Coord, Coord, Coord, Coord, Coord]; // https://navermaps.github.io/android-map-sdk/reference/com/naver/maps/map/NaverMap.html#getContentRegion()
coveringRegion: [Coord, Coord, Coord, Coord, Coord];
}) => void;
onMapClick?: (event: {
Expand Down
4 changes: 2 additions & 2 deletions example/map/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export interface NaverMapViewProps {
latitude: number;
longitude: number;
zoom: number;
contentsRegion: [Coord, Coord, Coord, Coord, Coord];
contentRegion: [Coord, Coord, Coord, Coord, Coord];
coveringRegion: [Coord, Coord, Coord, Coord, Coord];
}) => void;
onMapClick?: (event: {
Expand Down Expand Up @@ -126,7 +126,7 @@ export default class NaverMapView extends Component<NaverMapViewProps, {}> {
latitude: number;
longitude: number;
zoom: number;
contentsRegion: [Coord, Coord, Coord, Coord, Coord];
contentRegion: [Coord, Coord, Coord, Coord, Coord];
coveringRegion: [Coord, Coord, Coord, Coord, Coord];
}>) => void;
handleOnMapClick: (event: React.SyntheticEvent<{}, {
Expand Down
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export interface NaverMapViewProps {
latitude: number;
longitude: number;
zoom: number;
contentsRegion: [Coord, Coord, Coord, Coord, Coord];
contentRegion: [Coord, Coord, Coord, Coord, Coord];
coveringRegion: [Coord, Coord, Coord, Coord, Coord];
}) => void;
onMapClick?: (event: {
Expand Down Expand Up @@ -126,7 +126,7 @@ export default class NaverMapView extends Component<NaverMapViewProps, {}> {
latitude: number;
longitude: number;
zoom: number;
contentsRegion: [Coord, Coord, Coord, Coord, Coord];
contentRegion: [Coord, Coord, Coord, Coord, Coord];
coveringRegion: [Coord, Coord, Coord, Coord, Coord];
}>) => void;
handleOnMapClick: (event: React.SyntheticEvent<{}, {
Expand Down
4 changes: 2 additions & 2 deletions index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface NaverMapViewProps {
latitude: number;
longitude: number;
zoom: number;
contentsRegion: [Coord, Coord, Coord, Coord, Coord];
contentRegion: [Coord, Coord, Coord, Coord, Coord];
coveringRegion: [Coord, Coord, Coord, Coord, Coord];
}) => void;
onMapClick?: (event: {
Expand Down Expand Up @@ -177,7 +177,7 @@ export default class NaverMapView extends Component<NaverMapViewProps, {}> {
latitude: number;
longitude: number;
zoom: number;
contentsRegion: [Coord, Coord, Coord, Coord, Coord];
contentRegion: [Coord, Coord, Coord, Coord, Coord];
coveringRegion: [Coord, Coord, Coord, Coord, Coord];
}>) => this.props.onCameraChange && this.props.onCameraChange(event.nativeEvent);

Expand Down