Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi friends,
I am going to create one simple Page in asp.net providing User to select Locations from Google Maps.

Please guide me
1) First User will select what he have to search like Fuel Station/Restaurant/Hotel etc
2) Then he will enter Place Name

After clicking on search button search shoould be happen on google maps
e.g. If he select the Restaurants and Entered Place name as Aurangabad then List of Restaurants should be get displayed on the Google maps.

Please help me.

Thanks
Posted

1 solution

Something like this should do the job :

VB
after button click

Dim address,what as string

' in TextBox1 you type address you are looking for
'To what you have to fill what are you looking for (from dropdownlist or radio buttons)

address = "https://maps.google.com/maps?q=+" + TextBox1.Text + what
Process.Start(address)

Hope it helps
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900