react-native-daummap icon indicating copy to clipboard operation
react-native-daummap copied to clipboard

안드로이드에서는 region props 를 사용 못하는 거 같습니다.

Open sangl83 opened this issue 5 years ago • 1 comments

@ReactProp(name = "region") public void setRegion(MapView mMapView, ReadableMap initialRegion) { double latitude = initialRegion.hasKey("latitude") ? initialRegion.getDouble("latitude") : 36.143099; double longitude = initialRegion.hasKey("longitude") ? initialRegion.getDouble("longitude") : 128.392905; mMapView.setMapCenterPoint(MapPoint.mapPointWithGeoCoord(latitude, longitude), true); }

위 소스가 빠진 거 아닐까 싶어서 수정해서 사용 중입니다.

IOS는 잘 적용이 안되어서 (header 부분에서 못 찾거나 찾아도 실제로 적용이 안되는 문제) 그냥 소스를 해당 프로젝트로 옮기고 사용 중입니다.

유용한 프로젝트를 공유해주셔서 감사합니다.

sangl83 avatar Apr 23 '19 06:04 sangl83

해당 내용 수정하여 반영하도록 하겠습니다. 감사합니다.

asata avatar May 16 '19 07:05 asata