PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
wp-google-maps-pro
/
js
/
v8
/
google-maps
/** * @namespace WPGMZA * @module CloudGeocoder * @requires WPGMZA */ jQuery(function($) { WPGMZA.CloudGeocoder = function() { } WPGMZA.CloudGeocoder.SUCCESS = "success"; WPGMZA.CloudGeocoder.prototype.geocode = function(options, callback) { WPGMZA.cloudAPI.call("/geocode", { data: options, success: function(results, status) { if(!results) { callback(results, WPGMZA.GeocoderStatus.FAIL); return; } results.forEach(function(result) { result.geometry.location = new google.maps.LatLng( result.geometry.location.lat, result.geometry.location.lng ); }); if(results.length == 0) status = WPGMZA.Geocoder.ZERO_RESULTS; callback(results, status); } }); } });
[-] cloud-api.js
[edit]
[-] cloud-directions-renderer.js
[edit]
[-] google-pro-drawing-manager.js
[edit]
[-] google-pro-map.js
[edit]
[-] cloud-geocoder.js
[edit]
[-] google-pro-info-window.js
[edit]
[+]
..
[-] google-heatmap.js
[edit]
[-] google-pro-polygon.js
[edit]
[-] google-pro-marker.js
[edit]
[-] google-directions-service.js
[edit]
[-] google-directions-renderer.js
[edit]
[-] cloud-directions-service.js
[edit]
[-] cloud-autocomplete.js
[edit]