$(function () { /* Google Maps example */ var simple_map; simple_map = new GMaps({ el: '#map', lat: -12.043333, lng: -77.028333, zoomControl: true, zoomControlOpt: { style: 'SMALL', position: 'TOP_LEFT' }, panControl: false, streetViewControl: false, mapTypeControl: false, overviewMapControl: false }); simple_map.addMarker({ lat: -12.042, lng: -77.028333, title: 'Marker with InfoWindow', infoWindow: { content: '

Here we are!

' } }); });