Is there any way to get information about a certain street?

1

My question is quite simple, using the google-maps API I would like to get the following information:

{
    Street: "Getulio vargas",
    Information:
    {
        { Distance: 120, Type: "School", Title: "Escola Estadual Caixas" },
        { Distance: 250, Type: "Market", Title: "Bahamas" },
        { Distance: 310, Type: "Restaurant", Title: "Casa Italia" },
        { Distance: 390, Type: "Hotel", Title: "Victory Suites" }
    },
    StreetCorner:
    {
        { Distance: 150, Direction: "Left", Name: "Rua das Flores" }
        { Distance: 370, Direction: "Right", Title: "Barbosa Lima" }
    }
}

I do not know if google-maps has any API that returns this type of information, but it is "exactly" that kind of information I need.

    
asked by anonymous 13.07.2015 / 22:59

1 answer

-2

Yes, the Geocoding Service function does what you need, and still returns more information these you need. I'm guessing you have the latitude and longitude (they are needed to do this search).

    
13.07.2015 / 23:16