├── .eslintrc.js ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── README.zh-CN.md ├── index.js ├── package.json ├── resource ├── android-baidu.jpg ├── android-gaode.jpg ├── android-install-baidu.jpg ├── android-install-gaode.jpg ├── android-install-qq.jpg ├── android-list.jpg ├── android-no-map.jpg ├── android-qq.jpg └── ios-list.png └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | # 4 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /resource 2 | .eslintrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/package.json -------------------------------------------------------------------------------- /resource/android-baidu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-baidu.jpg -------------------------------------------------------------------------------- /resource/android-gaode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-gaode.jpg -------------------------------------------------------------------------------- /resource/android-install-baidu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-install-baidu.jpg -------------------------------------------------------------------------------- /resource/android-install-gaode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-install-gaode.jpg -------------------------------------------------------------------------------- /resource/android-install-qq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-install-qq.jpg -------------------------------------------------------------------------------- /resource/android-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-list.jpg -------------------------------------------------------------------------------- /resource/android-no-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-no-map.jpg -------------------------------------------------------------------------------- /resource/android-qq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/android-qq.jpg -------------------------------------------------------------------------------- /resource/ios-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/resource/ios-list.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwubida/react-native-map-linking/HEAD/yarn.lock --------------------------------------------------------------------------------