tags:

views:

47

answers:

2

I would like a map inside my iphone app which I want to query with search terms depending on certain values.

Does the mapkit framework accept queries of e.g. The United States and then display them?

I know this is really simple compared to the uses available from mapkit, that is why I wonder if it is covered?

+1  A: 

Currently MapKit only provides Reverse Geocoding from coordinates to an address. For forward geocoding (an address or placename to coordinates) you'll need to use a geocoding API.

If your application only has a set number of things to be searched and you know the coordinates (like countries in your example) you could store and search them in core data, sqllite etc.

Nick