Hello,
We Really Apologize about the Inconveniences caused! Please follow the Steps here:
Never Edit the jQuery.gmap.js File. Simply restore it to the Default Version.
Now, open the contact.html File and find the following code on this page:
https://maps.google.com/maps/api/js
and replace it with:
https://maps.google.com/maps/api/js?key=YOUR_API_KEY
Use the above Guide to Generate an API Key and change YOUR_API_KEY in the above code with your newly generated API key.
- Now, to use a Latitude/Longitude Combination, you can change the Location by simply changing the address: 'Melbourne, Australia' option to a Latitude/Longitude Combination in the Google Maps JS Initialization Code. Example:
jQuery('#google-map1').gMap({
latitude: your-latitude-value,
longitude: your-longitude-value,
maptype: 'ROADMAP',
zoom: 14,
markers: [
{
latitude: your-latitude-value,
longitude: your-longitude-value,
}
],
doubleclickzoom: false,
controls: {
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false
}
});
Make sure that your Latitude/Longitude value should be a Float Number.
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.