i am newbie in iOS Development and Newbie to Google map SDK i want to put a Search Functionality in my Application through URL Schema of Google Map it is Possible if it is Possible then Please Give me solution for this, or any Resource for it. thanks.
You need to use the Google Maps Geocoding API for this, you can't do this with only the Google Maps iOS SDK itself.
Geocoding is the process of converting addresses (like "1600 Amphitheatre Parkway, Mountain View, CA") into geographic coordinates (like latitude 37.423021 and longitude -122.083739), which you can use to place markers or position the map.
The user can enter any kind of address, and the Geocoding API will return the specific coordinates, so that you can display it on a map.