asata / react-native-daummap

react-native용 Daum 지도
MIT License
26 stars 22 forks source link

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

Open sangl83 opened 5 years ago

sangl83 commented 5 years ago

@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 부분에서 못 찾거나 찾아도 실제로 적용이 안되는 문제) 그냥 소스를 해당 프로젝트로 옮기고 사용 중입니다.

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

asata commented 5 years ago

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