Google地图Ionic V3:“我的位置”按钮不起作用

时间:2019-02-18 12:24:38

标签: ionic3

我的位置选项未显示在Google地图中。下面是我的代码示例。你能帮我吗?

loadMap() {
this.geolocation.getCurrentPosition().then((position) => {
let latLng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);

  let mapOptions = {
    center: latLng,
    zoom: 10,
    streetViewControl: false,
    zoomControl: false,
    mapTypeControl: false,
    controls : {
      compass : true,
      myLocationButton : true,
      myLocation: true,
      indoorPicker : false,
      zoom : false,
      mapToolbar : true
    },
    mapTypeId: google.maps.MapTypeId.ROADMAP,

  }

0 个答案:

没有答案