Google Maps Ionic Native在android和ios中显示空白页

问题描述 投票:0回答:2

我对ionic不熟悉,我正在尝试将google地图与ionic-native-googlemaps集成到我的应用程序中。在我的浏览器中,它工作正常,但是当我为android或ios构建时,我有一个空白页,如果我在url chrome:// inspect / device上查看google chrome的控制台,则没有错误。

这是我的打字稿文件

import {AfterViewInit, Component, OnInit} from '@angular/core';
import {
  GoogleMaps,
  GoogleMap,
  GoogleMapsEvent,
  MarkerOptions,
  Marker,
  Environment, LatLng, GoogleMapOptions
} from '@ionic-native/google-maps/ngx';
import { ActionSheetController, Platform, AlertController } from '@ionic/angular';

@Component({
  selector: 'app-favoris',
  templateUrl: './favoris.component.html',
  styleUrls: ['./favoris.component.scss'],
})
export class FavorisComponent implements OnInit, AfterViewInit {
  map: GoogleMap;
  constructor(
    public alertController: AlertController,
    public actionCtrl: ActionSheetController,
    private platform: Platform
  ) {
  }

  ngOnInit() {
    // await this.platform.ready();
    // await this.loadMap();
  }

  ngAfterViewInit() {
    this.platform.ready().then( () => {
      this.loadMap();
    });
  }


  loadMap() {

    const map = GoogleMaps.create('map');

    map.one( GoogleMapsEvent.MAP_READY ).then( ( data: any ) => {

      const coordinates: LatLng = new LatLng( 45.649864, -73.584213 );
      const position = {
        target: coordinates,
        zoom: 14
      };

      map.animateCamera( position );

      const markerOptions: MarkerOptions = {
        position: coordinates,
        // icon: "https://cdn0.iconfinder.com/data/icons/small-n-flat/24/678111-map-marker-512.png",
        title: 'Hello California',
        draggable: true
      };

      const marker = map.addMarker( markerOptions )
        .then( ( markesr: Marker ) => {
          markesr.showInfoWindow();
        });

    });
  }
}

并且在我的html文件中,我有

<ion-app>
    <ion-header translucent>
        <ion-toolbar>
            <ion-title>List</ion-title>
        </ion-toolbar>
        <ion-toolbar class="new-background-color">
            <ion-title class="text-center text-white">Favoris</ion-title>
        </ion-toolbar>
    </ion-header>
    <ion-content>
        <div id="map" style="height:100%;"></div>
    </ion-content>
</ion-app>

我到处都在寻找解决方案,但没有发现任何东西。

ionic-framework ionic2 ionic3 ionic4 ionic-native
2个回答
0
投票

最后,我解决了我的问题,如果以后有人遇到相同的问题,只是将版本ionic-google maps和ionic core降级,像这样

"@ionic-native/core": "^5.24.0",
"@ionic-native/google-maps": "^5.0.0-beta.20",

之后,如果您与包含Google的人的div的高度为500像素或更高(如果可以的话),则您的地图就可以正常使用了,您也需要向Google地图付款。


0
投票

您不必降级googleMap。有两种方法可以解决此问题:

首先您可以将标签DIV置于离子含量之外

 <div id="map" style="height:100%;"></div>
      <ion-content>

    </ion-content>

或您可以添加样式css以使内容背景透明以覆盖地图屏幕。

© www.soinside.com 2019 - 2024. All rights reserved.