JSFiddle - React, Tailwind, and code Playground

by maxim75

HTML

<!-- http://code.google.com/p/locationpicker/ -->

<script type="text/javascript" src='http://maps.google.com/maps/api/js?sensor=false'></script>

<script type='text/javascript' src='http://locationpicker.googlecode.com/svn/trunk/jquery.locationpicker.js'></script>
<script type="text/javascript">
    jQuery(document).ready(function(){
        jQuery('input.lnglat').locationPicker({
    
                width: "500px",
                height: "500px",
        });
    });
</script>

<input class="lnglat" />