Click here to Skip to main content
15,901,283 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Thanks in advance,

I am using vb.net 4.0 to use google maps, I want to get geo coordinates from address
so i can pass them to Web browser control which will invoke Java script
which has following function (working fine) , I want to show map using street address, so i need to convert street address to lat and long
JavaScript
function Initialize(zoomLevel, lat, lng, type) {
   var myLatlng = new google.maps.LatLng(lat, lng);
    var myOptions = { zoom: zoomLevel, center: myLatlng, mapTypeId: MapType };
    var MarkerSize = new google.maps.Size(48, 48);
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}


I had seen some other examples but they show Panel and Google other menus as well, any help will be appreciated.
Posted
Updated 9-Aug-12 5:18am
v2

1 solution

Google Maps api address to geocode[^]. Have you checked any of these links?
The first link[^] in this list looks quite promising.
 
Share this answer
 
Comments
εїзεїзεїз 15-Aug-12 4:35am    
Thanks

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