Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native Maps - new pricing

Since Google switched their pricing model, and Mobile Native Maps are still unlimited while Javascript SDK maps are limited to 28,000 per month as you can see here.

Does anyone know which category react-native-maps falls under? Thanks

like image 626
Tipper Avatar asked Nov 30 '18 01:11

Tipper


1 Answers

You can find answer in the documentation of react native maps

The actual map implementation depends on the platform. On Android, one has to use Google Maps, which in turn requires you to obtain an API key for the Android SDK.

On iOS, one can choose between Google Maps or the native Apple Maps implementation.

When using Google Maps on iOS, you need to also register for the iOS SDK and include the Google Maps library in your build.

source: https://github.com/react-community/react-native-maps/blob/master/docs/installation.md

As you can see in case of Android it uses Google Maps Android SDK, in case of iOS it can use Google Maps iOS SDK. The Google Maps JavaScript API is not used in react native maps. That means at the moment the usage is unlimited and free of charge as per Google Maps Platform price sheet.

I hope it clarifies your doubt.

like image 184
xomena Avatar answered Oct 19 '22 19:10

xomena