Current state
This commit is contained in:
28
public/assets/js/timeline.js
Normal file
28
public/assets/js/timeline.js
Normal file
@@ -0,0 +1,28 @@
|
||||
$(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>'
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user