JSFiddle - React, Tailwind, and code Playground
by Wolf
HTML
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: { lat: 43.444392, lng: 5.479682 },
mapTypeId: 'hybrid',
zoom: 20
});
var polyline = new google.maps.Polyline({
path: [{ lat: 43.444392, lng: 5.479682 }, { lat: 43.444392, lng: 6.479682 }],
geodesic: true,
strokeColor: '#26B4FF',
strokeOpacity: 0.55,
strokeWeight: 8,
map: map
});
polyline.addListener('mousemove', function (e) {
console.log(e.latLng.lat() + ' / ' + e.latLng.lng());
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap" async defer></script>
</body>
</html>