'What is the meaning of this (undefined getCameraForLocationToPoint) error and how to fix?

This is error which I don't understand TypeError: Cannot read properties of undefined (reading 'getCameraForLocationToPoint')

I got this error when I try to create a Bingmap for my angular project

.TS

    let loc = new Microsoft.Maps.Location(Latitude,Longitude);

    this.map.setView({ center: { latitude: loc.latitude, longitude: loc.longitude }});
    this.map.setView({ mapTypeId: Microsoft.Maps.MapTypeId.streetside });
    Microsoft.Maps.Events.addHandler(this.map, 'viewchangeend', () => { this.updateView(this.map); });
    this.updateView(this.map);

    Microsoft.Maps.Events.addHandler(this.map, 'click', this.Clicked.bind(this.map));

    streetViewMapPromise(promise: Promise<any>) {

       promise.then(x => {

         this.map = x;
      })
   }

  Clicked(e){ //click event
    console.log(e)
  }

.Html

<app-rs-bingmap (MapPromise)="streetViewMapPromise($event)" [options]="_mapOptions"></app-rs-bingmap>

above section is my Bingmap v8 component import section. As well as my click event is not working too. when I click on the map I want to show and alert.

Here is the stackblitz : getCameraForLocationToPoint error here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source