ionic-team / ionic-native-google-maps

Google maps plugin for Ionic Native
Other
221 stars 125 forks source link

BaseArrayClass events support #256

Closed LautaroLorenz closed 4 years ago

LautaroLorenz commented 4 years ago

I'm submitting a ...

BaseArrayClass supports subscribe to .on('finish') Where can I find what other events it supports?

I'm looking for a progress bar by subscribing to the "update" event

my code

Geocoder.geocode({}).then((mvcArray: BaseArrayClass<GeocoderResult[]>) => {
        mvcArray.on('finish').subscribe(() => {});
});
LautaroLorenz commented 4 years ago

solution insert_at event

Geocoder.geocode({}).then((mvcArray: BaseArrayClass<GeocoderResult[]>) => {
        mvcArray.on('insert_at').subscribe(() => {});
});