web services - VSTO web interaction -
in php can use code:
$url = "http://maps.googleapis.com/maps/api/distancematrix/json?origins=$location1& destinations=$location2&mode=bicycling&language=en-en&sensor=false"; $data = @file_get_contents($url); $obj = json_decode($data); $arr = (array)$obj;
to array of values return distance between 2 locations.
is kind of web interaction possible vsto? have googled high , low , nothing search giving me results work with.
ergo, think missing something.
Comments
Post a Comment