google api for searching different places round me in iphone - iphone

Hai friends I am new to Iphone programing ,in my project i want search different places like hospitals ,heathers ,fire stations ,and I just give the place and radius as inputs to URL ,so this which is the best API.or give me the url.

You could give Google Places a go.
If you are not able (or willing) to comply with Google's terms you may consider using GeoNames instead.

Related

iOS api for real time traffic data (like geoloqi and Waze)

I have been visiting some services api website but can't find what I am looking for. My question is more aimed at what resources to use rather than how exactly it should be done.
My iphone app requirement is to be able to track users that are nearby, are commuting and locate them on map. Additional requirement maybe texting them, call them, have video session with them etc. On a high level, this will convert to something like
get user details based on longitude and latitude
get to know if they are registered users of the service subscribed
Sending message to user/users
Call user using iphone phone api or dedicated app session
Video call
Waze is one of them. While it is open source, there is quite less documentation on how one can use it as backend for real time traffic data.
Then there is this Geoloqi which is paid, but has iOS SDK as well as rich api. However I cannot find sections that are useful to me when I look up to my requirements listed above. What I believe is that there must be many apps already relying on such a useful service. If any of them are open source / tutorials, it would be most useful resource for me for feasibility of geoloqi. Geoloqi also charges users for using their api, so it is also important for me to know what features come at what price .
For the level of data/information your interested in, and the functionality, you should just make your own app, I dont think you need those APIs.
You can find and send the coordinates of the people who are using your app to your server. Then you need to determine the distance between them, to see if they are in the zone of talking, or whatever other functionality you have listed above.
To determine the distance between two people, This answer should be helpful: Calculate distance between 2 GPS coordinates

Google Places APIs for my iPhone application

I am developing an iPhone application in which I am using Google Places APIs. I am finding user's current location using GPS. And I want to display places around user's current location. I am able to find places around users but in JSON data which is returned by Google APIs do not include images of places.
How can I get images of places using Google places APIs?
Thanks in advance.
check this cool project built for exactly the same reason - iOS5-Google-Places. More here as a blog post. It also has has search built in.
Application will determine location. Issue Google Places API request
containing the LAT and LNG and TYPES (types are configurable) and will
return JSON results into an object to display in UITableView.
This should solve your requirements.
Just in case this is not baking your cake, then you need to roll up your own iOS Google Places wrapper using a UIWebView and Google Places APIs.

How to implement google maps in my iPhone application

I am totally confused with google maps and maps of iPhone...
i have read that iPhone uses google maps.....and also spent some time on it....
But it never display the items like location pictures, balloons etc.
EDIT
THIS is photo for of browser
and following is same place for iPhone maps
second one did not show the annotation added by people.....
(this is what i was asking for ballons or other pictures which people adds to location on oogle maps)
I want to display all those in my application....
what should i do...
if you suggests implement Google maps API, then please suggest a working link...or provide some sample code if possible.....if anybody has done it...then please mail me at yogeshkumau#gmail.com
waiting for answer......
Points of Interests(location, pictures and baloons) that you are talking about can be shown in your maps, if you acquire the license for Google maps premier api. In that case you'd have to use dynamic maps by using google's web services. However if you want to implement it using MapKit framework on iOS devices, you'd have to draw your custom POIs using core graphics.
Apple has a special agreement with Google to use their maps on their platform. The internet is packed with examples of usage of MKMapView along with annotations (pins, there're no baloons on iPhone).

What software can I use to create a indoor map and see it on iPhone?

I want to create a inside building map with multiple levels (building floors), directions (navigation), coordinates and statical locations (elevators, escalators, emergency exits, etc) but I don't know what software can I use for that.
Also I want to include this map on a iPhone app so other users can see it and interact with it. I don't know if it's possible to use Google Maps API to doing that.
I could use a image in Illustrator or Dreamweaver to create a image map, but I think that isn't a good option to update data (layout changes often).
Thank you very much!!!
I'll answer the question I asked three years ago, as this can help other StackOverflow users seeking answers to the same question.
Currently there are several tools that can be used to create indoor maps for iOS (iPhone and iPad) apps.
There are two tools that IMHO are the best options, and they have different approaches, as follows:
https://www.indooratlas.com/ - Indoor atlas detects variations to magnetic fields inside buildings to better identifies user's position. You can use smartphones (iPhone and Android) to sense and record these magnetic variations and to map indoor locations.
http://indoo.rs/ - Using iBeacons you can develop indoor maps and guide users with routes inside small our large buildings like malls, universities, museums, etc.
Both tools have APIs that you can use on your apps.
Firstly you need to decide how you want to deliver it. You indicate that it's not just on an iPhone and given it's a building map it probably changes a lot. So I'd be suggesting you look into doing it as a web site. If you go that way there are a whole range of technologies that you can employ to construct a web site. But basically there are two pieces you would need to research and consider. That being the technologies you want to employ on the web server to generate the site, and the technologies you want to use on the client (browser) to view the site.
I'd suggest searching for other similar sites and looking at how they do them. This can tell you two things - what works and what doesn't work.
Lastly you need to consider your strengths, what programming languages do you know? Is it practical for you to learn new languages and technologies for this? What's your budget like? Can you afford to contract the work? etc.

Route Map in iPhone

Does iPhone sdk supports route between two places on Map? I have searched many times. But not able to find any reference. Even on apple iphone development forums, there is no such thing available.
I have done this functionality using google map url. In which I have to pass source and destination latitude & longitude. I am getting the map but it is not as much good as like the iphone google map.
Can anyone help me out to do this functionality? I need to display map route between two places and also want description of the exact path to reach the destination.
No, the API has no means to do routing. You can do overlays if you can figure out the route, but that's obviously a lot more work.