Hello,
Please consider enabling the GeoCoding API in order to fix this issue. Additionally, you can simply remove the address Option from the Google Maps JS Script and then add a latitude/longitude combination in the Code. Example:
<script type="text/javascript">
jQuery('#google-map').gMap({
latitude: -37.9712369,
longitude: 144.4926746,
maptype: 'ROADMAP',
zoom: 9,
markers: [
{
address: "Melbourne, Australia",
html: '<div style="width: 300px;"><h4 style="margin-bottom: 8px;">Hi, we\'re <span>Envato</span></h4><p class="nobottommargin">Our mission is to help people to <strong>earn</strong> and to <strong>learn</strong> online. We operate <strong>marketplaces</strong> where hundreds of thousands of people buy and sell digital goods every day, and a network of educational blogs where millions learn <strong>creative skills</strong>.</p></div>',
icon: {
image: "images/icons/map-icon-red.png",
iconsize: [32, 39],
iconanchor: [13,39]
}
}
],
doubleclickzoom: false,
controls: {
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false
}
});
</script>
This should definitely work fine. Let us know if we can help you with anything else or if you find any further issues.