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

Asked

Viewed 84 times

1

My question is very simple, using the google-maps 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 don’t know if the google-maps has some API that returns that kind of information, but it’s "exactly" that kind of information I need.

  • This example you took from some application or built to show what data you need? Another thing: how you want to make the consultation, will also inform city/state/country? I believe it does not exist, but it may be possible to combine data from various sources.

  • I built it to show what data I need. And yes, I would tell you the whole address. As for combining multiple sources, I also don’t know alternatives.

  • Okay, just to know even if the search will not be so generic, the first part, Information, Google Places provides, the problem is to find which streets intersect with the one we are looking for, has the new Maps API, the Roads, I didn’t get around to looking, but if I find something laid for you

1 answer

-2

Yes, the function Geocoding Service does what you need, and yet returns more information than you need. I’m guessing you have latitude and longitude (they are necessary to perform this research).

  • The service of geocoding returns this information, such as the StreetCorner? Can you include an example? And you don’t need latitude/longitude, they are only needed in the geocode reverse

  • It is exactly this my problem, I need information of the "Street" same, not of a place.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.