react-native-geocoder icon indicating copy to clipboard operation
react-native-geocoder copied to clipboard

geocoding services for react native

Results 57 react-native-geocoder issues
Sort by recently updated
recently updated
newest added

The library does a great job parsing and formatting the addresses, and giving a common usable format. But the default iOS reverse-geocoding (from position to address) is not very good...

`import Geocoder from 'react-native-geocoder'; // simply add your google key Geocoder.fallbackToGoogle(MY_KEY); ` Is it save to put the KEY on javascript file (client side) ? Will it not be readable...

I am testing on an android device (redmi 3 with android 5.1.1 and Google play service installed) and I defined a google api key (server key) but I always receive...

Hi, can you help me ? I want to load google map only in AE, how to do that ? ```componentRestrictions: {country: 'AE'}```

Due to a breaking change in RN we must remove a method (or remove override on it). Change commit is at https://github.com/facebook/react-native/commit/ce6fb337a146e6f261f2afb564aa19363774a7a8

Hello, I'm trying to render multiple markers on Map. The rendering is very laggy on iOS. However, the same code is comparatively faster on Android. Please review the code and...

This is my code: ``` import React, { Component } from 'react'; import { AppRegistry, View, Text } from 'react-native'; import Geocoder from 'react-native-geocoder'; // 0.5.0 Geocoder.apiKey = '__API__KEY__'; export...