ionic-team / ionic-team/ionic-native-google-maps

Some indoor map tiles aren't showing up

Ouverte
#343 2 commentaires 0 réactions 0 personnes assignées Voir sur GitHub
Langage dominant
TypeScript
Étoiles
215
Forks
119
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

Hi I am testing out the capabilities of Google Maps in mapping an airport and I have been able to get it to show me the level manager and roughly a quarter of the airport, but the other 75% does not show up as an indoor area.

Looking on maps.google.com on the browser, I know there is more that it can show, and I can't figure out what the issue is.

Does anyone know what the problem might be? It doesn't seem to be related to my cdebecause the rest of the map shows up, it just seems like it's missing the tiles or something, but who knows! The related code is below

```typescript
import { Component } from '@angular/core';
import { Platform } from "@ionic/angular";
import { Geolocation } from '@ionic-native/geolocation/ngx';
import { GoogleMap, GoogleMaps, GoogleMapOptions, Environment, GoogleMapsEvent, LatLng, MarkerOptions, Marker } from "@ionic-native/google-maps";
import { ThrowStmt } from '@angular/compiler';

// declare var google: any;

@Component({
selector: 'app-polygon-drawer',
templateUrl: './polygon-drawer.page.html',
styleUrls: ['./polygon-drawer.page.scss'],
})
export class PolygonDrawerPage {
map: GoogleMap;
constructor(public platform: Platform) { }

async ngOnInit() {
await this.platform.ready()
}

ngAfterViewInit() {
this.loadMap()
}

loadMap() {

Environment.setEnv({
'API_KEY_FOR_BROWSER_RELEASE': 'APIKEY',
'API_KEY_FOR_BROWSER_DEBUG': 'APIKEY'
});

let mapOptions: GoogleMapOptions = {
camera: {
target: {
lat: 48.1195049,
lng: 16.5639036
},
zoom: 18,
tilt: 0
}
};
console.log('a map should be created soon');
this.map = GoogleMaps.create('map_canvas', mapOptions);
}
}
```

Guide de contribution

Ouvrir le guide de contribution

Piste de recherche

Start with the inline TypeScript implementation, especially loadMap(), Environment.setEnv(), and the GoogleMaps.create('map_canvas', mapOptions) entry point. Reproduce the map at the supplied coordinates and inspect the map configuration and plugin behavior; done means establishing why only part of the indoor area appears and documenting a verified fix or limitation.

Rédigé par le modèle d'indexation à partir du texte de l'issue.

Évaluation

Stack technique
angular, typescript
Domaine
mobile
Type d'issue
Bug
Difficulté
4/5
Temps estimé
3-5 jours
Activité
À l'abandon
Clarté
À clarifier
Accessibilité débutants
25/100

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.