こんにちは、現在の場所にマーカーを配置しようとしていますが、以下のコードはロスアトロスに戻り続けます。マーカーを取り出すと、自分の位置が特定されます。マーカーを機能させるにはどうすればよいですか?
Ext.define('FirstApp.view.Mapd',{
extend:'Ext.Panel',
xtype:'maps',
config : {
fullscreen: true,
layout: 'fit',
title:'Map',
iconCls:'map',
items: [{
xtype: 'map',
mapOptions : {
useCurrentLocation: true,
zoom : 12,
mapTypeId : google.maps.MapTypeId.ROADMAP,
navigationControl: true,
navigationControlOptions: {
style: google.maps.NavigationControlStyle.DEFAULT
}
},
listeners: {
maprender: function(comp, map) {
var marker = new google.maps.Marker({
map : map,
position : map.center,
title : "Me",
animation: google.maps.Animation.BOUNCE
});
setTimeout(function() {
map.panTo(map.center);
}, 1000);
}
}
}]
}
})