Skip to content

Commit

Permalink
0.0.57
Browse files Browse the repository at this point in the history
  • Loading branch information
QuadFlask committed Feb 19, 2021
1 parent 28bd43c commit 06da931
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,23 @@ interface MarkerProps {
};
}
```
> 안드로이드 플랫폼에서 마커내 커스텀 뷰를 지원합니다. `0.0.57`
> ```js
> <Marker coordinate={P5} width={96} height={96}>
> <View style={{backgroundColor: 'rgba(255,0,0,0.2)', borderRadius: 80}}>
> <View style={{backgroundColor: 'rgba(0,0,255,0.3)', borderWidth: 2, borderColor: 'black', flexDirection: 'row'}}>
> <Image source={require("./marker.png")} style={{
> width: 32, height: 32,
> backgroundColor: 'rgba(0,0,0,0.2)', resizeMode: 'stretch',
> borderWidth: 2, borderColor: 'black'}} fadeDuration={0}/>
> <Text>Image</Text>
> </View>
> <ImageBackground source={require("./marker.png")} style={{width: 64, height: 64}}>
> <Text>image background</Text>
> </ImageBackground>
> </View>
> </Marker>
> ```
### `Polyline`
```ts
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-nmap",
"version": "0.0.56",
"version": "0.0.57",
"description": "react-native bridge for naver map",
"main": "index.js",
"author": "QuadFlask",
Expand Down

0 comments on commit 06da931

Please sign in to comment.