i am using google map api with asp .net for making a website, apart from C# which programming languages do i need to learn
+2
A:
Javascript, the api is js driven. JQuery or some other javascript library can facilitate its use too.
$(function() {
loadMaps();
});
function loadMaps() {
google.load("maps", "2", { "callback": mapsLoaded });
}
function mapsLoaded() {
var map = new google.maps.Map2(document.getElementById("map"));
map.setCenter(new google.maps.LatLng(37.4419, -122.1419), 13);
}
CRice
2009-10-07 04:19:39
+1
A:
You can read this article at codeproject.com for more directions on using Google Maps with ASP.net.
TheVillageIdiot
2009-10-07 04:19:49
+1
A:
If you want to skip the javascript then you can use this google maps asp.net control:
mga911
2009-10-07 04:30:14
A:
You can see the Google api user control. that will facilate you all what u want . just search on www.codeproject.com
Lalit
2009-10-07 05:16:22