About google map iOS - iphone

Anyone can tell me how to make a google map in my UIView like the iPhone original have. like Maps in iphone build in one

1) Read the documentation for MKMapKit
2) Watch the WWDC videos for using MKMapKit.
Either of those will teach you more than a couple of lines here.

Related

Layering google maps ios api and game/graphics framework?

I am developing an iOS app that includes a google maps api map view and a layer that contains controls to manipulate the map. Thus far I have attempted to use Cocos-2d, however there seems to be a conflict in sharing the view between cocos2d and google maps (probably because of OpenGL issues). Is there a way to share both a cocos2d view and a google maps view at the same time? Otherwise what are my other options? Thanks in advance!

how to read bar code image as programmatic? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to use iPhone Camera as Bar Code Scanner?
hi all How do we do programmatic reading of a barcode that is captured using a mobile phone camera? For example, how do that using iPhone? Do we need separate hardware to read bar code or can we do image manipulation? help me to solve the problem in iphone.
give the guide for how to use outside api to read the bar code as programmatic in iphone.
Look At the following links
RedLaser
Softek Barcode Reader SDK
ZBar
There are open source libraries available which does this. Y can't use the same?
"Zbar" framework is one such.
I am unable to comment on your question, but there is a possible duplicate here, How to use iPhone Camera as Bar Code Scanner?
Also, you might do well to use a third party library. If you are looking to learn, then have a look around google :) The ZBar library, for example, is hosted on source forge.

using BING maps on iPhone / iPad sdk

has anyone had any experience using BING maps on the iphone/ipad? We have an application which uses the googlemaps default map in the SDK, but we now have a requirement to use BING maps instead.
I am thinking we'd use the BING API via a UIWebView?
Has anyone else tried this? Thanks for any information!
I've used a bing API n a UIWebView, however the JS is rather costly, yet until I find and discover a BING SDK for the iPhone/iPad will probably have ot resort to that.
One other thing you can try (which I've just started down the path of), is trying to use HTML5 to cache a bunch of the is parts to it and see if that might speed the implementation up.
Hope that helps!
Apparently, the http://ibing.codeplex.com/ project on Codeplex was created with the intent of adding Bing Maps support for iOS and MacOS developers. It doesn't look to have been updated in over a year, and I don't know if it even works. Just thought I'd post it for anyone interested in checking it out.
this maybe another approach worth looking into
https://github.com/mtigas/iOS-MapLayerDemo
Recently announced and posted on the Bing Maps Blog on 5 May 2011, a new Bing Maps control/SDK is now available for iOS.
The Bing Maps iOS Control is an Objective-C control for embedding maps directly into native iOS apps. With a rich, gesture-based UI provided by Seadragon, the Bing Maps iOS Control provides support for adding pushpins and other overlays to the map, allows your device location to be displayed, and provides the ability to retrieve contextual information for a given map location.
Link to download the SDK:
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6e01a102-49ed-409e-b384-0b67521fb612

Custom maps in Android, loading via tiles (alternative for RouteMe for iPhone SDK)

I am working on a prototype port of one of our iPhone apps to Android.
The iPhone app uses the RouteMe API to load our own custom maps into the application. (also tiled, just like Google Maps itself, so only loading what you see at that moment - this is very important in this case)
I have been searching for a similar product for Android. I found Nutiteq, but as RouteMe is free, I am trying to find something free for Android as well.
If anybody has suggestions, I would love to hear them. The more information the better, of course :).
EDIT:
Still haven't found anything that acts the same as RouteMe, so suggestions are still very welcome.
Maybe you can get away with the standard MapView and Overlays?

What to do to make a map in the iphone Application?

I am New phone Application Developer and i want to develop an Application which contains maps so will you please give me some information regarding how to load map in my application?
You want to use MapKit. The specifics of this API are too expansive to discuss in this answer (and you didn't provide us with a description of what exactly you want to achieve), but look at the documentation for the MKMapView class and its delegate.
Also, there are some 80 questions on Stack Overflow tagged "MapKit".
Here's a blog post about the iPhone Map Kit.
If you don't understand it you should first play around with the iPhone SDK / Objective-C and get more familiar with it.