function setGoogleMaps(options){ var locations = options.address; var zoom = options.zoom; //$.getScript("https://maps.googleapis.com/maps/api/js?key=AIzaSyDKziIzJ1fMD7eEYfxCdbp9VmDrT7w2aUA&callback=initMap"); //function initMap(){ var geocoder = new google.maps.Geocoder(); geocoder.geocode({"address": locations[0][1]}, function(results){ var map = new google.maps.Map(options.target, { "center": results[0].geometry.location, "zoom": zoom, "mapTypeId": google.maps.MapTypeId.ROADMAP, "scrollwheel": "wheel", "disableDefaultUI": false, "styles": [{"stylers": [{ "lightness": 30 //"saturation": -100 }]}], "zoomControlOptions": {"position": google.maps.ControlPosition.LEFT_CENTER}, "streetViewControl": false, "fullscreenControl": false, "mapTypeControl": false }); for (c = 0; c < locations.length; c++){geocodeAddress(locations[c]);} function geocodeAddress(location){ var title = location[0]; geocoder.geocode({"address": location[1]}, function(results){ new google.maps.Marker({ //"icon": options.marker || "http://maps.google.com/mapfiles/ms/icons/blue.png", "map": map, "position": results[0].geometry.location, "title": title, "animation": google.maps.Animation.DROP }); }); } }); //} }