Get Address when click on map view - iphone

I am making an application for iphone. In that i want to add event like as when user click on map then that address save in text field of view. I have am showing map in view and user zoom in map and click on any location.When click on map then i want use that location. I want to save that location in string or text field. Can u tell me any api which provide this facility?
So can you tell me how can i do that?

Read this Location awareness and come back if you still need help.

Related

How to put gesture detector at specific points on the photo?

I will make an application with Flutter. I want to show different pop-ups when I click on certain parts of a photo that I imported from outside in the application.
For example, get a photo like this.
enter image description here
When I click on the fields I have determined in this photo, I want to give a pop-up according to the field and give information.
one more example.
I want to show what the button does by opening a pop-up when you put this png into practice and click on the fields I specified.
Do you have any suggestions for a resource or library that I can mark on the photo or help me?[!

Should I provide new GWT place?

I have a general question for GWT Activity and Places paradigm realization
For example, I have a place "productList" and appropriate view ProductListView. A have a table with some Product entity in each row. I wanna to double click on row and got popup window which allow me to edit Product in doubleclicked row. How to implement it? Should I provide new place "editProduct" for this activity?
A popup dialog is not a place - users would not expect to see it when they press the back button. So there is no need to create a special EditProduct place.
You can think of "places" as something that users may want to see when they click on Back or Forward buttons, or something they want to bookmark.

Refresh google map of my application

I have added a googleMap to my application successfully. Now i need to add a refresh button to the map so that it gets refreshed. I have added the button, but i don't know how to refresh the map.
Is there any predefined method that i could use to refresh the map. Help ??
there is nothing predefined for REFRESH - what you are looking for in the MapKit. you need to remove old annotations and have to add the new ones manually(from your own code) for zooming you need to create a span on your own to set it to any value you like (that's also to be done by your own code).

How to design the UI for two data point inputs for routing

I have a large list of items (about 500) on my iphone app.. I am creating a custom map which uses the user's input of a "to" and "from" locations (places).. I am brainstorming the best way to collect the input from the user. Ideally, a search bar with a table view that has the matching items (instant search).. I could ask the user to enter the "To" location and "From" destination and then present the custom map with the route.. I am trying to figure out the ideal way to do this such that it remains simple and user friendly.. I could have;
1) A search bar/table view that asks for the From location which, once entered, goes to a similar second view that takes the To location (could be too annoying for the user)
2) Each input area takes half a view (From is top, to is bottom).. however too cluttered
3) One view with the items, the user selects two locations from the list (in this case, it is not very intuitive.. how would I let the user know that he is supposed to select two items.. what if he messes up the order or forgets he clicked on an item as he searches?)
Note that I am not asking for the code, just an idea on how to design this UI to be simplistic and easy to use
Thanks!
You could have two search bars with a drop down list that provides the instant search (kinda like google's instant search) once the user enters the first selection it freezes and goes to the "TO" bar...

iPhone Footer like functionality

I am having trouble with designing my App.
I am having a button and a label in every page, required functionality is when user clicks a button, it will fetch the last tweet of application's tweeter account and will display it in label.
I know how to fetch and display it in one page.
My question is, can't I create something like custom control, which i just need to place in every page.
Hope, i was able to explain my question.
Any help will be appreciated.. thanks in advance.
Paresh
you create this footer view and place it in the first view (or a base view) and add all the subsequent views below it.. or you could even add it directly to the window..