File: /home/clinicamaciel/www/wp-content/plugins/trx_addons/js/trx_addons.options.map.js
jQuery(document).ready(function() {
'use strict';
// Use object to store all maps separately
var MapObject = function (map_wrapper) {
this.map_wrapper = map_wrapper;
};
MapObject.prototype = {
// Init all elements
init: function() {
var coords = (this.map_wrapper.data('coords') || '').split(',');
this.lat = coords.length>=1 ? coords[0] : '';
this.lng = coords.length>=2 ? coords[1] : '';
this.zoom = coords.length>=3 ? coords[2] : '';
if (this.lat && this.lng)
this.initMapElements();
else
this.geoLocation();
},
// Init find address
initMapElements: function() {
var lat = this.lat || '34.05536166179949',
lng = this.lng || '-118.24996948242188',
zoom = this.zoom || 14,
center;
center = new google.maps.LatLng(lat, lng);
this.map = new google.maps.Map( this.map_wrapper.get(0), {
center : center,
zoom : zoom*1,
streetViewControl: false,
mapTypeId : google.maps.MapTypeId.ROADMAP
} );
this.marker = new google.maps.Marker( { position: center, map: this.map, draggable: true } );
this.geocoder = new google.maps.Geocoder();
this.addListeners();
},
// Detect current user position
geoLocation: function() {
if (navigator.geolocation) {
var map_object = this;
// If user not answer for geo location request - init map with default location
var geolocation_finished = false;
navigator.geolocation.getCurrentPosition(
// If geolocation success
function(position) {
map_object.lat = position.coords.latitude;
map_object.lng = position.coords.longitude;
if (!geolocation_finished) {
geolocation_finished = true;
map_object.initMapElements();
} else {
var latlng = new google.maps.LatLng(map_object.lat, map_object.lng);
map_object.map.setCenter(latlng);
map_object.marker.setPosition(latlng);
}
},
// If geolocation failed
function(error) {
if (!geolocation_finished) {
geolocation_finished = true;
map_object.initMapElements();
}
}
);
setTimeout(function() {
if (!geolocation_finished) {
geolocation_finished = true;
map_object.initMapElements();
}
}, 10000);
} else {
this.initMapElements();
}
},
// Add event listeners
addListeners: function() {
var map_object = this;
google.maps.event.addListener( this.map, 'click', function(e) {
map_object.marker.setPosition(e.latLng);
map_object.updateParams(e.latLng);
});
google.maps.event.addListener( this.map, 'zoom_changed', function(e) {
map_object.updateParams(map_object.marker.getPosition());
});
google.maps.event.addListener( this.marker, 'drag', function (e) {
map_object.updateParams(e.latLng);
});
this.map_wrapper.parent().find('.trx_addons_options_googlemap_search_text').on( 'keydown', function (e) {
if (e.keyCode == 13) {
jQuery(this).next().trigger('click');
e.preventDefault();
return false;
}
});
this.map_wrapper.parent().find('.trx_addons_options_googlemap_search_button').on( 'click', function () {
map_object.geocodeAddress();
return false;
} );
jQuery(document).on('admin_action.init_hidden_elements', function(e, container) {
if (container === undefined) container = jQuery('.trx_addons_options');
container.find('.trx_addons_options_googlemap').each(function() {
var map_object = jQuery(this).data('map-object');
if (map_object) map_object.refresh();
});
});
},
refresh: function() {
if (this.map) {
var zoom = this.map.getZoom(),
center = this.map.getCenter();
google.maps.event.trigger(this.map, 'resize');
this.map.setZoom(zoom);
this.map.setCenter(center);
}
},
// Update coordinate to input field
updateParams: function(latLng) {
this.map_wrapper.siblings('input[type="hidden"]').val(latLng.lat() + ',' + latLng.lng() + ',' + this.map.getZoom());
},
// Find coordinates by address
geocodeAddress: function() {
var map_object = this,
address = this.map_wrapper.parent().find('.trx_addons_options_googlemap_search_text').val();
if (address) {
this.geocoder.geocode({'address': address}, function(results, status) {
if (status === google.maps.GeocoderStatus.OK) {
map_object.map.setCenter(results[0].geometry.location);
map_object.marker.setPosition(results[0].geometry.location);
map_object.updateParams(results[0].geometry.location);
}
});
}
}
};
// First time init all maps
//-------------------------------------------------
jQuery('.trx_addons_options_googlemap:not(.inited)').each(function() {
var map_object = new MapObject(jQuery(this));
map_object.init();
jQuery(this).addClass('inited').data('map-object', map_object);
});
});