react-native-mapmagic-gl
v1.0.6
Published
Mapmagic GL is a react-native interactive maps library
Downloads
136
Maintainers
Readme
MapMagic GL SDK for React Native
MapMagic is a React-Native library that simplifies your life.
Visit our official website at https://www.mapmagic.co.th
Installation
Dependencies
- node
- npm
- React Native recommended version 0.50 or greater
Yarn
yarn add react-native-mapmagic-gl
Npm
npm install react-native-mapmagic-gl --save
or
Source Code
- clone source code from gitlab
git clone [email protected]:mobile/react-native-mapmagic-gl.git
- install node_module dependencies
cd react-native-mapmagic-gl
npm install
- pack project to node_module ( result in react-native-mapmagic-gl-x.x.x.tgz file)
npm pack
- move file to
project
and edit filepackage.json
"dependencies": {
...
,
"react-native-mapmagic-gl": "file:{pathtofile}"
},
- install node_module dependencies in
project
npm install
Installation Guides
Note on iOS
In the Info
of your application target Add Key MGLMapboxMetricsEnabledSettingShownInApp
-> YES
Run Example in Source Code
Example
import MapboxGL from 'react-native-mapmagic-gl';
....
<MapboxGL.MapMagicView
style={{ flex: 1 }}
showUserLocation={true}
zoomLevel={12}
app_id={'xxxx'}
api_key={'xxx'}
lang={'en'}
userTrackingMode={MapboxGL.UserTrackingModes.Follow}/>