Topic: GoogleStreetView with location not working

The source code not even using the key at any where !!!???

        public GoogleStreetViewMetaRequest(string key, double longitude, double latitude, string language)
        {
            string url = "https://maps.googleapis.com/maps/api/js … c_._dqzs51";
            url = string.Format(CultureHelper.cultureInfo, url, longitude, latitude, language);
            WWWRequest request = new WWWRequest(url);
            request.OnComplete += OnRequestComplete;
        }

Re: GoogleStreetView with location not working

Hello.

Just checked location requests, and on my side it works correctly.
Please send a location that does not work for you.

How exactly do you make the request?
Using Online Maps, Google Street View component, or API?
If using the API, please show your code.

The key is not currently used in the request.
The key is present so that when / if Google updates access points, we can easily update the asset without the need for users to modify their code.

Kind Regards,
Infinity Code Team.

Boost your productivity a lot and immediately using Ultimate Editor Enhancer. Trial and non-commerce versions available.

3 (edited by raymondtsang_amvr 2020-03-06 11:11:50)

Re: GoogleStreetView with location not working

It works now, just found that the order of lat/lng value is wrong.
It is a lot better if the field order is same as API.

- https://developers.google.com/maps/docu … view/intro
location can be either a text string (such as Chagrin Falls, OH) or a lat/lng value (40.457375,-80.009353).

Post's attachments

Attachment icon GoogleStreetView.png 10.7 kb, 98 downloads since 2020-03-06 

Re: GoogleStreetView with location not working

One follow up question, why the API key is not using ??
As far as I know, it should be a charged service, isn't it ??
https://cloud.google.com/maps-platform/pricing/

Re: GoogleStreetView with location not working

Many lances were broken in the war of the order parameters.
If necessary, I can explain in detail why our assets have this order of parameters.

The key is not used because these requests do not require a key.
But, I think you're right, and the request should be registered.
A modified script is attached.

Post's attachments

Attachment icon GoogleStreetViewMetaRequest.cs 3.48 kb, 151 downloads since 2020-03-06 

Kind Regards,
Infinity Code Team.

Boost your productivity a lot and immediately using Ultimate Editor Enhancer. Trial and non-commerce versions available.