Hi, thank you for your reply! This is the website: http://delvacode.com/jc/contact-us.php
The position the map is centered on is correct, just that the map pin is not appearing. Here is the js script.
// Map Markers
var mapMarkers = [{
address: "218 S Bridge Rd, 058767",
html: "<strong>Masjid Jamae</strong><br><br><a href='#' onclick='mapCenterAt({latitude: 1.283239, longitude: 103.845366, zoom: 16}, event)'>[+] zoom here</a>",
icon: {
image: "img/pin.png",
iconsize: [36, 46],
iconanchor: [12, 46]
}
}];
// Map Extended Settings
var mapSettings = {
controls: {
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: true,
streetViewControl: true,
overviewMapControl: true
},
scrollwheel: false,
markers: mapMarkers,
latitude: "1.283239",
longitude: "103.845366",
zoom: 18
};
var map = $("#googlemaps").gMap(mapSettings),
mapRef = $("#googlemaps").data('gMap.reference');
// Map Center At
var mapCenterAt = function(options, e) {
e.preventDefault();
$("#googlemaps").gMap("centerAt", options);
}