I want to develop my own maps app. I have been successful in getting a street address at the point of touch on my iPhone using CLGeocoder
. Now my question is the following:
- I know that you can get information about a place by using a URL like
https://maps.google.com/?q=37.324599,-122.031844
- If you click on the above URL, it will take you near a church in Cupertino. Now
CLGeocoder
will only give me its street address i.e.10110 N De Anza Blvd Cupertino, CA 95014
(I get this). But how to get the actual name i.e.St Joseph of Cupertino Church and Parish
? - We can see it on Google Maps that means they must have it stored somewhere right?
Is there any way to access those place names (Not just by CLGeoCoder
, any way is fine).