JSFiddle - React, Tailwind, and code Playground
by lollero
HTML
<input type="text" placeholder="City" />
<button id="submit">submit</button>
<img id="map" src="https://maps.googleapis.com/maps/api/staticmap?center=Madison, WI&zoom=14&size=288x200&markers=Madison, WI&sensor=false" height="200" width="288" />
JavaScript
$('#submit').on("click", function() {
console.log('sdfs');
var map = $('#map'),
place = $(this).prev('input').val(),
cval = 'https://maps.googleapis.com/maps/api/staticmap?center='+ place +'&zoom=14&size=288x200&markers='+ place +'&sensor=false';
$('<img id="map" height="200" width="288" src="'+ cval +'">').insertAfter( map );
map.remove();
});