1.1.0 • Published 4 months ago

react-native-map4d-services v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months 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);
})