Files
SkinbaseNova/public/legacy/assets/js/timeline.js
2026-02-07 08:23:18 +01:00

28 lines
627 B
JavaScript

$(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: '<p>Here we are!</p>'
}
});
});