AI
Size: a a a
AI
AI
AI
AS
<ion-header>
<ion-navbar color="primary">
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>
<ion-content #content id='content'>
<div #map id="map"></div>
</ion-content>
AS
<script src="http://maps.google.com/maps/api/js?key=-"></script>
AS
AI
AS
@ViewChild('map') mapElement: ElementRef;
AI
AS
this.map = new google.maps.Map(this.mapElement.nativeElement, mapOptions);
AS
AS
AI
AS
AS