<html>
                <head>
                <title>Mappls Plugin - getEloc Plugin</title>
                <meta name="viewport" content="width=device-width, initial-scale=1.0">
                <meta name="desciption" content="Mappls getEloc Plugin">
                <script src="https://apis.mapmyindia.com/advancedmaps/v1/< Map_Key >/map_load?v=1.3"></script>
                <script src="https://apis.mapmyindia.com/advancedmaps/api/<jwt/token>/map_sdk_plugins"></script>
                <link rel="icon" href="http://about.mappls.com/images/favicon.ico" type="image/x-icon">
                    <style>
                        #map{
                            width: 100%; height: 60vh;
                        }
                    </style>
                </head>
                <body>
                    <div id="map"></div>
                    <script>
                     /*Map Initialization*/
                      var map = new MapmyIndia.Map('map', {center: [28.09, 78.3], zoom: 5, search: false, zoomControl: true, location: false, fullscreen: true, traffic: false,scrollWheelZoom:false});
                      /*getEloc plugin initialization*/
                      var elc = MapmyIndia.getEloc({map: map, eloc: 'SSBSAT',callback: elocData});
                      function elocData(data) {
                                console.log(data);
                      elc.fitbounds(); 
                       }     
                   </script>
                </body>
            </html>