Rohall
19 Jul 2010, 6:40 AM
Hi!
Ok ok, so I've posting a lot about maps...sorry about the mess and thanks again for all of the help. I've noticed that when I created a new map like this:
// Map Object/Settings
this.directionsMap = new Ext.Map({
fullscreen: true,
centered: true,
mapOptions: {
center: new
google.maps.LatLng(this.practiceLocation.latitude,this.practiceLocation.longitude), zoom:11
}
});
this.panelMap = new Ext.Panel({
id: 'panelMap',
layout: {
type: 'fit'
},
items: [this.directionsMap],
});
the map will appear above all other panels, but any markers I create will be displayed. If I remove the fullscreen: true configuration option then the map will behave correctly except it will not render any markers. Furthermore, if I set the panelMap fullscreen option to true while the map's fullscreen option is set to true I get an odd glitch which appears to be a map overlaying another map (the markers will appear in this as well). The panelMap object is being contained by another basic panel which has fullscreen: true and a layout of type 'card'.
Has anyone had similar issues? Is this a bug or am I missing something?
Thanks again!
Ok ok, so I've posting a lot about maps...sorry about the mess and thanks again for all of the help. I've noticed that when I created a new map like this:
// Map Object/Settings
this.directionsMap = new Ext.Map({
fullscreen: true,
centered: true,
mapOptions: {
center: new
google.maps.LatLng(this.practiceLocation.latitude,this.practiceLocation.longitude), zoom:11
}
});
this.panelMap = new Ext.Panel({
id: 'panelMap',
layout: {
type: 'fit'
},
items: [this.directionsMap],
});
the map will appear above all other panels, but any markers I create will be displayed. If I remove the fullscreen: true configuration option then the map will behave correctly except it will not render any markers. Furthermore, if I set the panelMap fullscreen option to true while the map's fullscreen option is set to true I get an odd glitch which appears to be a map overlaying another map (the markers will appear in this as well). The panelMap object is being contained by another basic panel which has fullscreen: true and a layout of type 'card'.
Has anyone had similar issues? Is this a bug or am I missing something?
Thanks again!