Skip to content

Instantly share code, notes, and snippets.

@mathildathompson
Created May 3, 2013 19:33
Show Gist options
  • Save mathildathompson/5513208 to your computer and use it in GitHub Desktop.
Save mathildathompson/5513208 to your computer and use it in GitHub Desktop.
var map;
function initMap() {
var mapOptions = {
center: new google.maps.LatLng(48.8530, 2.3498),
zoom:12,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map($("#map-canvas")[0], mapOptions);
}
function addMarker(latitude, longitude, title) {
var marker = new google.maps.Marker({
position:new google.maps.LatLng(latitude, longitude),
map : map,
title : title
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment