JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "gmaps-geocoding.js"
Full Path: /var/www/laravel_filter/public/backend/js/page/gmaps-geocoding.js
File size: 552 bytes
MIME-type: text/plain
Charset: utf-8
"use strict";
// initialize map
var map = new GMaps({
div: '#map',
lat: -6.5637928,
lng: 106.7535061
});
// when the form is submitted
$("#search-form").submit(function(e) {
e.preventDefault();
// initialize map geocode
GMaps.geocode({
address: $('#address').val(),
callback: function(results, status) {
if (status == 'OK') {
var latlng = results[0].geometry.location;
map.setCenter(latlng.lat(), latlng.lng());
map.addMarker({
lat: latlng.lat(),
lng: latlng.lng()
});
}
}
});
})