calin-beard
11/13/2017 - 4:32 PM

Geocomplete - jQuery plugin for Google maps search and live preview https://github.com/ubilabs/geocomplete EXAMPLE: http://geocomplete.paged

Geocomplete - jQuery plugin for Google maps search and live preview https://github.com/ubilabs/geocomplete EXAMPLE: http://geocomplete.pagedemo.co/

<!--START code for Geocomplete plugin on Instapage-->
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyC-lrg46u-Lt6MIuNXNpk3zPda82kkDa3w&libraries=places"></script>
<script src="https://rawgit.com/ubilabs/geocomplete/master/jquery.geocomplete.min.js"></script>

<script>
    $(document).ready(function() {
        $('input[name="' + btoa('Search address') + '"]').geocomplete({
            map: '#element-24' //element ID from blank html element
        });
    });
</script>
<!--END code for Geocomplete plugin on Instapage-->