你好我實現在煎茶觸摸谷歌地圖的建議在這裏: google maps implementation in sencha touch 2 (the MVC way)谷歌地圖煎茶觸摸2配置
然而,當在地圖出現後,它首先會顯示默認位置(介於美國),然後再 - 再次根據我的配置顯示地圖。我怎樣才能避免這種情況?
Ext.define('App.view.Map', {
extend: 'Ext.Map',
xtype: 'map',
useCurrentLocation: false,
config: {
layout: 'fit',
iconCls: 'icon-location',
title: 'Location',
styleHtmlContent: true,
items: {
docked: 'top',
xtype: 'titlebar',
title: 'Location'
}
},
mapOptions: {
center: new google.maps.LatLng(<value>, <value>),
disableDefaultUI: true
},
constructor: function(config) {
this.callParent(config);
if (!(window.google || {}).maps) {
this.setHtml('<p id="maperror">Internet Connection Required!</p>');
}
}
});
張貼您的地圖代碼 – Viswa
看到我的更新回答 – Viswa