Is it possible to fetch all the regions an user can visit in a given travel time in Bing locations api - bing-maps

Is is possible to fetch / mark all the regions the user can cover from the current location given the travel time using bing maps api
like this - [https://app.traveltime.com/][1]

It sounds like you are asking about the isochrone API:
https://learn.microsoft.com/en-us/bingmaps/rest-services/routes/calculate-an-isochrone#:~:text=The%20Bing%20Maps%20Isochrone%20API%20provides%20time-specific%2C%20isoline,designated%20starting%20point%20within%20a%20set%20time%20period.

Related

How do I fetch the facebook events of a particular location

I would like to fetch all the facebook events by passing a latitude or longitude or a place, As FQL support is no more, I've tried the following query
search?q=*&type=events&center=37.76,-122.427&distance=1000
But the results I get are from syria, India, USA, Hungary and all, why I'm not getting the events from only that location I've specified. Is there any legal issues in fetching the public events from facebook, How many number of eevnns I can fetch at a time??
There is no way to directly search for events in a specific area. The center and distance parameters are only available for Places, as you can read in the docs: https://developers.facebook.com/docs/graph-api/using-graph-api#search
More information:
https://www.facebook.com/help/community/question/?id=10201749749651827
How can I query public facebook events by location/city?
About "how many events can i fetch", those are the API rate limits: https://developers.facebook.com/docs/graph-api/advanced/rate-limiting
API results usually have a limit of 25 entries for one API call. But you can set it higher:
/search?type=event&q=test&limit=100
Legal issues depend on what you want to do with the data, impossible to say without knowing the details for your App.

Bing Traffic API Not returning any data for Accidents/Delays?

I am interested in using the Bing Traffic API to get information about traffic incidents along a specified location. I have the correct Bounding Box Co-Ordinates and they show up accurately along a location where I am interested in getting incident data for. However when I query the API with these co-ordinates, I do not get any data returned. The only incidents I do see are for road closures. I do not see any info for delays or accidents.
I am using the below HTTP URL for Query. There was a traffic congestion. I even checked on Bing Maps which showed red along the road. Am I doing anything wrong?
I even specified the type of traffic incidents to report. Still the output has "Resources Set" = 0.
http://dev.virtualearth.net/REST/v1/Traffic/Incidents/40.812728881835938,-74.035232543945313,40.847114562988281,-73.988388061523438/true?t=1,2,3,4,5,6,7,8,9&s=1,2,3,4&key=MY_KEY&o=xml
Thanks,
Kush

reverse geolocation with open graph action

I am developing an application which has an associated lat,long with the action in open graph. Presently, the api only allows for a place, so I have created my own location object which can be a property of the action.
The problem I perceive here is that this will not form part of the action in a very Facebook way.
I do not want to use Facebook places, nor do I want to have the use create a place when performing an action.
I don't need a lot of granularity, instead, just need "near $locality", such as a village name or national park if no residential addresses exist. This seems to be what happens with the Facebook messages.
Do we know a way of getting low fidelity data from Facebook or other (free) source which allow for locality information to be attached to an action?
Cheers

How to get doctors lists from google places api

sir
Now, I want to develop app that find hospitals and doctors around me by using Google Places Api.
Google Places Api is perfect to find hospitals.
But for doctors, i want only to get humans's information.
Right now, when I try to search doctors by using google places api , I always get health service center or hospital;s information with human doctor's.
Following is url that I used for it.
https://maps.googleapis.com/maps/api/place/search/xml?location=34.0522222,-118.2427778&radius=300&types=doctor&name=&sensor=false&key=AIzaSyBKFKov5f5YoSDRnWrT3y7MFf9DfsdRgCg
So, any idea to filter them so i can only get human doctor's information? (not establishment information).
If anyone knows about it then, would you please help me?
Best regards.

How get business in area when user give end and start point's latitude and longitude?

I want to make project in which user submit starting and ending points' latitude and longitude on first screen. After submitting user get list of all business in between those points on next screen.So that i get latitude and longitude from user. And after getting how show list of all business? Which API provides these two events? I have required method how i show list of business of between these points.
There is no built-in api for this type of information. You would have to get it from a third-party provider/server.