1.0.2 • Published 2 years ago

react-native-map4d-services v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-native-map4d-services

React Native Map4dServices for iOS + Android

Installation

npm install react-native-map4d-services

Usage

E.g. Auto Suggest

import { fetchSuggestion } from "react-native-map4d-services";

// ...

fetchSuggestion({text: 'abc'})
.then(result => {
  console.log('Suggestion:', result);
})