im really new in to using APIs so after looking on google maps Api page im not sure if there are APIs designed to be used for C#. I dont need a google maps to be show on my app all i need to know if i can use the google maps API on C#. This is the one i will like to use
Ive look for it on many places but all i could find was alternatives to using Gmaps but thats not what i want.
¿It is possible to use it?
1. Create Requests to the Google Maps API by yourself
You can just send HTTP-Requests to the google maps API and then work with the results. You could use WebRequest to forge requests to the google api. You need a Maps API Key for that.
You would have to build up the GET parameters eg.
origin=...&destination=...&key=YOUR_API_KEY
+ parse the JSON response to do something with it.Google Maps Api Documentation (under Web Service APIs) lists the request parameters and example responses.
A JSON response will look something like this (from Directions API )
2. ... or use a dedicated library