Reputation: 634
Learning from my broad question here ... I was wondering how I could go about using google-maps, server-side in c# ? Specifically, I need to use the distance-matrix-api and probably get and parse the results from JSON. If anyone could provide a basic outline of the structure needed to do this I would greatly appreciate it. (I have it worked out fine in javascript, but this created issues when I needed the distance data server-side.)
Upvotes: 1
Views: 1772
Reputation: 5890
There is a web service for the Distance Matrix API. It works like the JS API but you just do a server side request and you can get JSON or XML results back.
Upvotes: 2