https://github.com/fivethree-team/google-maps-component
🗺️ Google Maps Component
https://github.com/fivethree-team/google-maps-component
angular google-maps ionic
Last synced: 2 months ago
JSON representation
🗺️ Google Maps Component
- Host: GitHub
- URL: https://github.com/fivethree-team/google-maps-component
- Owner: fivethree-team
- License: mit
- Created: 2019-04-22T09:11:25.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-26T12:03:36.000Z (almost 7 years ago)
- Last Synced: 2025-12-30T09:37:03.287Z (6 months ago)
- Topics: angular, google-maps, ionic
- Language: TypeScript
- Homepage:
- Size: 240 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# @fivethree/google-maps
[](https://www.npmjs.com/@fivethree/google-maps)
!!! Work in Progress !!!
## 📦 Installation
To get started, install the package from npm. The latest version supports Ionic v4 and Angular/RX 6.
```bash
npm install @fivethree/google-maps --save
# or if you are using yarn
yarn add @fivethree/google-maps
```
then in `app.module.ts`, import the `GoogleMapsModule`:
```TS
import { NgModule } from '@angular/core';
import { GoogleMapsModule } from '@fivethree/google-maps';
@NgModule({
imports: [
GoogleMapsModule
]
})
export class AppModule {}
```