JSFiddle - React, Tailwind, and code Playground

by Hoang Hiếu

HTML

<div id="mapCanvas" ></div>

CSS

#mapCanvas{
    width:200px;
    height:200px;
}

JavaScript

function initialize() { 
alert("sdfsdf");
var latLng = new google.maps.LatLng(24.727403,  46.760123);
var map = new google.maps.Map(document.getElementById('mapCanvas'), {
zoom: 10,
center: latLng,
mapTypeId: google.maps.MapTypeId.ROADMAP
});

var marker = new google.maps.Marker({
position: latLng,
title: 'Point A',
map: map,
draggable: true
});
}
window.onload = initialize();