我无法弄清楚如何使用坐标来提供Sencha 2地图,尝试过这样的事情(在互联网的某个地方,我看到有人使用了这些属性,但它没有在地图API的配置列表中定义)。 我找不到任何有意义的配置属性或方法,我忽略了什么?
http://docs.sencha.com/touch/2-0/#!/api/Ext.Map
this.getLoginview().push({
xtype: 'map',
position: new google.maps.LatLng(-34.397, 150.644)
//useCurrentLocation: true
});
答案 0 :(得分:0)
我明白了:
var position = new google.maps.LatLng(60.358115,5.169067);
var map = new Ext.Map({
mapOptions: {
center: position
},
}
});
loginView.push(map);