mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
18 lines
316 B
TypeScript
18 lines
316 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'fuse-google-maps-docs',
|
|
templateUrl: './google-maps.component.html',
|
|
styleUrls : ['./google-maps.component.scss']
|
|
})
|
|
export class FuseGoogleMapsDocsComponent
|
|
{
|
|
lat = -34.397;
|
|
lng = 150.644;
|
|
|
|
constructor()
|
|
{
|
|
|
|
}
|
|
}
|