How to show Google Maps API Web Services data on IPhone - ios5

I'am developing an IPhone app, in which I need to show routes between two locations.
And for this I want to make use of Google Maps API services and get the [JSON response][1] from them and I would like to show the data in my App.
I'm entirely new to this implementation
Can anyone let me know ..How to implement this..
I want to use that JSON Data and show routes in my App..

Related

Create personal POI for google maps

I am working on a project where my customer has to administrate (delete & add) several addresses (locations) on a google map.
This map needs to be inserted in a website with all the POIs.
Also the app needs to be embedded in android app and ios app.
The point now is how can I make it possible for the customer to administrate all locations?
When using the:
Google Maps Android API
Google Maps for iOS
Google Maps JavaScript API
Might be super easy but I miss this puzzle....
Take a look at Google My Maps - service that enables users to create custom maps for personal use or sharing (mymaps on stackoverflow). But take into account that currently there is no any API to access My Maps programmatically.

Can I show user data to other users in Stormpath?

I'm trying to integrate Stormpath to an iOS app (Swift), and would like to be able to show one user's data to another user.
In other words, can I show 1 user another user's information by searching my userlist for certain factors (such as age or geographic location) like I would be able to with mySQL?
Is this possible? I haven't been able to find documentation for this.
To do this, you would implement an API endpoint in your backend application that exposes whatever information you need (for example, another user's data), and then have your iOS app make a request to your API to retrieve that information and display it on the device.
Stormpath is really flexible and will allow you to do pretty much whatever you want with your user data, so as long as you can write an API call on your backend to retrieve the data, your iOS app can show whatever you want =)
SOURCE: I work # Stormpath.

How to connect with google api

For my application i need to get the hotels nearby using GOOGLE API.
How can i connect my application with GOOGLE API for getting the images from google?
From the google database i have to access the images of the hotels and so that i could find out is there any rooms are available or not......
Is it possible or is there any other methods available?
How can it be done?
Actually i added the JSON parser class files to my code,but then i couldn't find out how to get the images from the google.
thanks for the code!!!!

How to go about building an iPhone app that accesses a website with a custom UI?

I don't quite know how to explain this but I want to build an app that can access a website like, for example, Facebook, but I don't actually want it to be Facebook's website in the sense that I want to design the UI. There is a couple of apps like this already in the app store, one being called "Facebook Touch HD". I have managed to get an app to access Facebook with UIWebView, but it just goes to Facebook's mobile website, obviously.
Look at the Facebook IOS SDK.
You probably want to fetch data from Facebook using its APIs. Facebook actually offers a library for iOS, so you may want to check it out.
In general, this applies to any site that offers an API. Usually you can use NSURLConnection to make requests to get the data you're interested in (check the specific API's documentation for details); then you have parse that data (most services output data in XML or JSON).

iphone : embed a fully integrated customized (Google) map in a native app

Is it possible to send GPS coordinates, a name and hyperlink to a kind of Google map API so that it shows a map, some places with a name and whenever a user clicks on a place would go to a URL?
If so, is it possible to attach this map as a view so that a user can make use of the navigator bar of the native application at any time?
If it is possible, how could it be done?
Google:
http://www.invasivecode.com/2009/07/adding-maps-to-your-iphone-app-mapkit/
http://blog.objectgraph.com/index.php/2009/04/02/iphone-sdk-30-playing-with-map-kit/