1

我有一个 sencha touch 1 应用程序,我刚刚升级到 sencha touch 2,除了谷歌地图之外,我什么都可以工作。

在 ST1 中,我在 index.html 中添加了这一行:

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>

然后我将其添加到面板中:

            {
                xtype: 'map',
                useCurrentLocation: false,
                fullscreen: false,
                layout: 'auto',
                id: 'jobmap',
                height: 400,
                mapOptions: {
                    zoom: 12,
                    navigationControl: true,
                    navigationControlOptions: 
                    {
                        style: google.maps.NavigationControlStyle.DEFAULT
                    }
                }                    
            }

在 ST2 中,文档说仍然添加对 index.html 的引用,尽管他们的论坛似乎也说使用 app.json。我已经尝试使用上面的代码并且面板上没有任何内容。它之前和之后的控件彼此相邻。

我什至刚刚尝试过:

         {
                xtype: 'map',
                useCurrentLocation: true
            }

我仍然一无所获。

有任何想法吗?

4

1 回答 1

3

应该设置包含您的地图的面板layout: 'card'

此外,没有必要(或可能导致错误)设置fullscreen: falselayout: 'auto',只需将它们从地图配置中删除即可。

希望能帮助到你。

于 2012-04-18T06:09:57.523 回答