npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tookan-tracker-react-native-sdk

v4.1.5

Published

Tookan tracking Component for iOS + Android

Downloads

23

Readme

tookan-tracker-react-native-sdk

Sample project for implementing tookan-tracker-react-native-sdk module.

What is the use of this Package

React Native Tookan Tracker lets you add live location tracking to your mobile app via Tookan platform. This repo contains an example client app that has everything you need to get started in minutes. This repo written in JavaScript, checkout quickstart if your feel more comfortable with it.

Add and setup these packages to your project before adding tookan-tracker-react-native-sdk: react-native-maps (install + link) axios (install only) sp-react-native-mqtt (install + link) Note ->: After running react-native link sp-react-native-mqtt, Don't forget to add pod 'MQTTClient' in ios Pod file and the run pod install in ios. @mapbox/polyline (install only) Note: If you are using Tracking without UI then this library is not required.

Install

Install the library from npm: $ npm install --save tookan-tracker-react-native-sdk or $ yarn add tookan-tracker-react-native-sdk

Usage

With UI

import {MapTracking} from 'tookan-tracker-react-native-sdk'

export default class testTracking extends Component { render() { return ( <MapTracking jobId=”1234567” userId= ”123” polylineColor= ”pink” mapKey="Flightmap or Google Keys" mapType=1/> ); } }

Without UI

import {getSocketData} from 'tookan-tracker-react-native-sdk'

export default class testTracking extends Component {

getSocketData(your_jobId, your_user_id, data => { console.log(data); }); }

Props

| Prop | Type | Default | Note | |---|---|---|---| | jobId | string (required) | | Tookan JobId that you want to track. | userId | string (required) | | Tookan UserId. | mapType | number (required) | | For Googlemap = 1 and For Flightmap = 2. | rateSubmitActionStyle | {{backgroundColor: 'red'}} | | To change style of Submit action on Rate UI set this prop | rateAlertTitle | string (optional) | | To set title on Alert after Rating done | rateAlertMessage | string (optional) | | To set message body on Alert PopUp after Rating | rateAlertOkTitle | string (optional) | | To set Ok title on Alert PopUp after Rating | isRateEnableInApp | Boolean (optional) | | To Enable Rating | rateCommentPlaceholder | string (optional) | | Rate Comment Placeholder | rateSubmitActionTitle | string (optional) | | Rate Submit Action Button | mapKey | string (required) | | Google Map Key or Flightmap Key depend on mapType | polylineColor | string (required) | | Polyling Color | pathUpdateTimer | Number(in milliseconds) | 60000(60 sec) | Time after which google direction hit will be called. | destinationIcon | Image source | | Image source used for indicating the destination spot on a map. | pickupIcon | Image source | | Image source used for indicating the pickup spot on a map. | deliveryIcon | Image source | | Image source used for indicating the delivery spot on a map. | agentMarkerImage | Image source | | Image source used for indicating the agent marker on a map. | anchorX | Number | 0.4 | For adjusting the agent marker on x-axis. | anchorY | Number | 0.4 | For adjusting the agent marker on y-axis. | getData | function | | For getting raw data from sockets(with UI).

getSocketData(jobId,userId,callback):

This method is used to getting the raw data from sockets for without UI tracking.

getSocketData(this.state.jobId, this.state.userId, data => { console.log(data); });

getETA (For Without UI): This method is used to get ETA for job destination by inputing the start location and map key.

import {getSocketData,getETA} from 'tookan-tracker-react-native-sdk'

export default class testTracking extends Component {

getSocketData(your_jobId, your_user_id, data => { console.log(data); });

getETA( {latitude: '30.6942713', longitude: '76.8792693'}, 'google_map_key or flightmap key depend on mapType', 'mapType', data => { console.log(data); }, ); }

stopTracking():

This method is used to stop the tracking and disconnecting the sockets.

Npm Package Link tookan-tracker-react-native-sdk