Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function getAddress() {
- var kecamatan = $('#lstKec').find(':selected').attr('data-name');
- var kelurahan = $('#lstDesa').find(':selected').attr('data-name');
- var address = kelurahan+', '+kecamatan+' KABUPATEN KUDUS JAWA TENGAH';
- console.log(address);
- geocode(address);
- // geocoder.geocode( { 'address': address}, function(results, status) {
- // if (status == 'OK') {
- // map.setCenter(results[0].geometry.location);
- // var marker = new google.maps.Marker({
- // map: map,
- // position: results[0].geometry.location
- // });
- // } else {
- // alert('Geocode was not successful for the following reason: ' + status);
- // }
- // });
- }
- function geocode(address) {
- console.log('geocode');
- $.get('https://maps.googleapis.com/maps/api/geocode/json?address='+encodeURIComponent(address), function(data) {
- if (data.results.length) {
- var lokasi = data.results[0].geometry.location;
- $('#lat').val(lokasi.lng);
- $('#long').val(lokasi.lat);
- $('#map_canvas').locationpicker({
- location: {
- latitude: lokasi.lat,
- longitude: lokasi.lng
- },
- radius: 0,
- zoom:15,
- inputBinding: {
- latitudeInput: $('#lat'),
- longitudeInput: $('#long')
- },
- markerInCenter: true,
- enableAutocomplete: true
- });
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement