JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://apis.mapmyindia.com/advancedmaps/v1/your_map_key_here/map_load?v=1.3"></script>
<div id="map"></div>
CSS
html,
body,
#map {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
JavaScript
var map = new MapmyIndia.Map("map", {
center: [28.61, 77.23],
zoomControl: true,
hybrid: true,
search: true,
location: true
});