How to call the isLocationOnEdge
function from .Net Core on server side?
Something like this,
var api= "https://maps.googleapis.com/maps/api/directions/json?origin=" + originLat + ',' + originLng + "&destination=" + destinationLat + ',' + destinationLng + "&key=" + apiKey;
Whether the isLocationOnEdge
function could also be called like calling the direction API, is there any way to do that?