它的代碼低於我用來在我的頁面中顯示地圖。ionic2 - 谷歌地圖在瀏覽器中不起作用
TS文件
import { GoogleMaps, GoogleMap, GoogleMapsEvent, LatLng, CameraPosition, MarkerOptions, Marker } from '@ionic-native/google-maps'; export class MapPage { constructor(private googleMaps: GoogleMaps){} ngAfterViewInit() { this.loadMap(); } loadMap() { let element: HTMLElement = document.getElementById('map'); let map: GoogleMap = this.googleMaps.create(element); map.one(GoogleMapsEvent.MAP_READY).then(() => { console.log('Map is ready!'); }); } }
HTML代碼塊
<div #map id="map" style="height:100%;"></div>
爲什麼它不起作用?請添加有關錯誤的所有相關信息,否則我們將無法幫助您:( – sebaferreras
在控制檯中沒有錯誤,只出現空白屏幕 –