Skip to content

Instantly share code, notes, and snippets.

@jansabbe
Created June 8, 2011 15:55
Show Gist options
  • Save jansabbe/1014701 to your computer and use it in GitHub Desktop.
Save jansabbe/1014701 to your computer and use it in GitHub Desktop.
sencha touch map with marker
new Ext.Map({
useCurrentLocation: true,
listeners: {
maprender : function(comp, map){
var marker = new google.maps.Marker({
position: map.center,
title : 'testing',
map: map
});
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment