티맵
길찾기 연동
tmap://route/
?goalx
=도착지경도
&goaly
=도착지위도
&goalname
='도착지 이름(맘대로)'
import * as React from 'react' import { View, StyleSheet, Linking } from 'react-native' ... export function POptionalServices() { return ( <View style={styles.container}> ... <PIconButtonM iconColor="#009900" iconSize={30} iconName="navigation" text="네비게이션" onPress={()=>Linking.openURL('tmap://route?goalx=126.882483532638&goaly=37.4799587138591&goalname="이놈의 주차장"')} /> ... </View> ); } ...
