!!! Work in Progress !!!
To get started, install the package from npm. The latest version supports Ionic v4 and Angular/RX 6.
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
:
import { NgModule } from '@angular/core';
import { GoogleMapsModule } from '@fivethree/google-maps';
@NgModule({
imports: [
GoogleMapsModule
]
})
export class AppModule {}