Pages

Powered By Blogger

Saturday, January 15, 2011

Tutorial - Google Maps V3 API

Introduction


Welcome to the developer’s corner for the Google Maps V3 API. The fundamental element in any Google Maps V3 API application is the "map" itself.

Audience


This tutorial is designed for people familiar with HTML, CSS and JavaScript programming.


The HTML Skeleton is as follows
<html>
            <head>
                        <title> ……………………………</title>
                        <style type=”text/css”>
                                    ……………………………
                                    ……………………………
                        </style>
                        <script type=”text/javascript”>
                                    ……………………………
                                    ……………………………
                        </script>
            </head>
            <body>
                        ………………………………………..
                        ……………………………..............
            </body>
</html>


In this tutorial our approach towards learning different functionalities and methods provided by Google Maps V3 API would be case-study oriented. All the functionalities would be explained at the time of use.