i am using google map api with asp .net for making a website, apart from C# which programming languages do i need to learn

link|improve this question
feedback

4 Answers

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);
    }
link|improve this answer
feedback

You can read this article at codeproject.com for more directions on using Google Maps with ASP.net.

link|improve this answer
feedback

If you want to skip the javascript then you can use this google maps asp.net control:

Google Maps for ASP.NET

link|improve this answer
feedback

You can see the Google api user control. that will facilate you all what u want . just search on www.codeproject.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown