https://github.com/nativescript/nativescript-googlemaps
Provides API for adding Google Map in a NativeScript project.
https://github.com/nativescript/nativescript-googlemaps
Last synced: 10 months ago
JSON representation
Provides API for adding Google Map in a NativeScript project.
- Host: GitHub
- URL: https://github.com/nativescript/nativescript-googlemaps
- Owner: NativeScript
- License: apache-2.0
- Created: 2016-11-01T14:43:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-07T16:44:34.000Z (over 7 years ago)
- Last Synced: 2025-08-23T06:22:15.424Z (10 months ago)
- Language: JavaScript
- Size: 4.14 MB
- Stars: 5
- Watchers: 30
- Forks: 7
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
__ATTENTION: This repository is deprecated. Use the [nativescript-google-maps-sdk](https://www.npmjs.com/package/nativescript-google-maps-sdk) plugin as an alternative.__
Welcome to the `nativescript-googlemaps` plugin for NativeScript framework
# Prerequisites
- installed [NativeScript-CLI](https://github.com/NativeScript/nativescript-cli)
# Install `nativescript-googlemaps` plugin.
Navigate to project folder and run `NativeScript-CLI` command `tns plugin add nativescript-googlemaps`
The plugin will default to latest available version of the Android `play-services-maps` SDK. If you need to change the version, you can add a project ext property `googlePlayServicesVersion` like so:
```
// /app/App_Resources/Android/app.gradle
project.ext {
googlePlayServicesVersion = "+"
}
```