Lua Service2Media 移动
我尝试使用 service2media 平台为移动应用程序创建地图,但在创建新地图实例的行上收到此错误 - 尝试非表索引:null。知道为什么吗?地图视图以坐标和半径作为参数。
MapView ={}
function MapView:loadView()
local mapView = M2Map.newNativeMapView(Coordinate(0,0), 3000);
self:addSubView(mapView);
end
Im trying to create a map using the service2media platform for mobile applications and i get this error - attempted index of non table : null on the line where i create a new map instance. Any idea why? The map view takes in coordinates and radius as parameters.
MapView ={}
function MapView:loadView()
local mapView = M2Map.newNativeMapView(Coordinate(0,0), 3000);
self:addSubView(mapView);
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您必须使用 Coordination.new() 实例化 Cooperative 类。根据平台的版本,您可能必须使用 MapView 类而不是 M2Map 类。在后一种情况下,您必须重命名 Lua 类名称以防止名称冲突。
First of all you have to instantiate the Coordinate class using Coordinate.new(). Depending on the version of the platform you possibly have to use the MapView class instead of the M2Map class. In the latter case you have to rename your Lua class name in order to prevent name collision.