JSFiddle - React, Tailwind, and code Playground
by Ufuk Ozdemir
HTML
<img id="map" src="https://maps.googleapis.com/maps/api/staticmap?center=38.4067,27.1400&zoom=16&size=500x300&markers=38.4067,27.1400&sensor=falsescale=2&key=AIzaSyDt0D6sy4v8BZFVJiAea93aiR63E-GpBL8" width="500" height="300">
JavaScript
$('html').on("click", function() {
var location = '38.4067,27.1400';
var map = $('#map'),
cval = 'https://maps.googleapis.com/maps/api/staticmap?center='+location+'&zoom=10&size=500x300&markers='+location+'&sensor=falsescale=2&key=AIzaSyDt0D6sy4v8BZFVJiAea93aiR63E-GpBL8';
$('<img id="map" width="500" height="300" src="'+ cval +'">').insertAfter( map );
map.remove();
});