Places API

Abhi Jhalani 1 Reputation point
2020-10-15T10:46:25.99+00:00

I want to use Places API where if user types any address than all the related address will be visible. How and from where I can get the API?

Azure Maps
Azure Maps
An Azure service that provides geospatial APIs to add maps, spatial analytics, and mobility solutions to apps.
653 questions
{count} votes

1 answer

Sort by: Most helpful
  1. rbrundritt 16,456 Reputation points Microsoft Employee
    2020-10-15T15:07:25.867+00:00

    Azure Maps has four different services that can be used to accomplish this. All you have to do is add the `` parameter in these services and it will tell the server to use predictive mode:

    • Free-form address geocoding: Specify a single address string (like "1 Microsoft way, Redmond, WA") and process the request immediately. This service is recommended if you need to geocode individual addresses quickly.
    • Fuzzy search: This API combines address geocoding with point of interest search. This API takes in a free-form string that can be an address, place, landmark, point of interest, or point of interest category and process the request immediately. This API is recommended for applications where users can search for addresses or points of interest from the same textbox.
    • POI search: Search for points of interests by name. For example; "starbucks".
    • POI category search: Search for points of interests by category. For example; "restaurant".

    Here are a couple of examples

    2 people found this answer helpful.
    0 comments No comments