Hello team,
My organization just purchased thinkgeo map suite desktop recently. I’m trying to use GoogleMapsOverlay in my WPF application. GoogleMapsOverlay needs ClientId and PrivateKey as follows:
GoogleMapsOverlay googleMapsOverlay = new GoogleMapsOverlay();
googleMapsOverlay.MapType = GoogleMapsMapType.Satellite;
googleMapsOverlay.Name = “Google Maps Satellite”;
googleMapsOverlay.ClientId = " ";
googleMapsOverlay.PrivateKey = " ";
I looked at this link:
https://developers.google.com/maps/documentation/directions/get-api-key#premium-auth.
From this link, I can see this lines:
Your client ID and signature
Upon purchasing your Google Maps APIs Premium Plan license, you will receive a welcome email from Google that contains your client ID and your private cryptographic key.
From my understanding, I have to get a Google Maps APIs Premium Plan license. But I contact google sales, they said google doesn’t sell Google Maps APIs Premium Plan any more. Google changed it to enterprise customers account which is for large scale enterprises https://cloud.google.com/maps-platform/pricing/. It is not suitable to my organization.
I also try using my google account to create credentials as following screenshot:
I can get the client id and secret key from OAuth 2.0 credential.
But after I input those information to my application, it doesn’t work. I’m just wondering any other solution for our case?
Many thanks for your help.
Min