Lua Service2Media 移动

发布于 2025-01-08 00:41:47 字数 257 浏览 1 评论 0原文

我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灰色世界里的红玫瑰 2025-01-15 00:41:47

首先,您必须使用 Coordination.new() 实例化 Cooperative 类。根据平台的版本,您可能必须使用 MapView 类而不是 M2Map 类。在后一种情况下,您必须重命名 Lua 类名称以防止名称冲突。

function MapView:loadView()
    local mapView = M2Map.newNativeMapView(Coordinate.new(0,0), 3000);
    self:addSubView(mapView);
end

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.

function MapView:loadView()
    local mapView = M2Map.newNativeMapView(Coordinate.new(0,0), 3000);
    self:addSubView(mapView);
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文