zyzdev / flutter_street_view

10 stars 29 forks source link

Is it possible to find out if a Street view exists for a given LatLng? #27

Closed davoutuk closed 1 year ago

davoutuk commented 1 year ago

Is it possible to find out if a street view display exists for a given LatLng?

Does the 'FlutterGoogleStreetView' widget include any form of exception creation of call back that would allow to discover whether a stree view exists or nor?

davoutuk commented 1 year ago

Found the answer...

          onPanoramaChangeListener: (location,e) {
            setState(() {
              _streetViewAvailable = (e == null);
            });
          },
davoutuk commented 1 year ago

fixed