1

我是 Corona 和 Lua 的新手,我正在尝试弄清楚如何关闭地图和文本框。地图和文本框出现在主屏幕上,我能够创建一个按钮(只是一个典型的黑色 x)并使其关闭,但我无法关闭地图或文本框。下面是我正在使用的代码片段,但我被卡住了。我搜索了谷歌,并阅读了他们的文档,但我只是遗漏了一些东西。

 local obj = display.newImageRect( "closeButton.jpg" ,25,25 )
            obj.x = 60
            obj.y = 410     -- replaced with newImageRect for dynamic scaling (adjust X & Y as required)

    obj.touch = function (event)
             local btn = event.target
                if event.phase == "ended" then 
                btn.alpha = 0  -- example to show the function doing something
                myMap.alpha = 0
                textBox.alpha = 0
            end

    end

    -- begin detecting touches
    obj:addEventListener( "touch", obj.touch)

myMap = native.newMapView( 25, 0, 275, 180 )
myMap.mapType = "hybrid" -- other mapType options are "satellite" or "hybrid"
myMap.isScrollEnabled = true
myMap.isZoomEnabled = true 
myMap.isLocationUpdating = true
isVisible = myMap.isLocationVisible
myMap:setCenter( 38.354614, -81.726351 )
myMap:addMarker(  38.354614, -81.726351)
-- Adding the Text Box that contains the Directions
textBox = native.newTextBox( 22, 183, 280, 225 )
textBox.text = "blah blah blah boring directions."
local group = display.newGroup()
group:insert( obj )

我不断收到“尝试索引本地'myMap'(一个零值)”,以及 textBox 的相同错误。因此,如果有人可以提供帮助,我们将不胜感激。

4

1 回答 1

5

在 'obj.touch' 函数上方本地声明您的 'MapView' 和 'textBox',如下所示:

 local myMap;
 local textBox;

注意:模拟器不支持 Corona mapView。

继续编码......

于 2013-03-12T11:13:11.480 回答