有人试过在Hyperloop项目中使用Mapbox吗?

时间:2016-03-13 00:44:10

标签: appcelerator mapbox appcelerator-hyperloop

我正在尝试将Mapbox实现到我的Hyperloop项目中。但它并没有像我期望的那样发挥作用。

任何想法我做错了???

到目前为止,我已经通过可可豆荚将Mapbox-iOS-SDK导入到我的AppC项目中。

platform :ios, '7.0'
target 'Hyperloop-map-test' do
pod 'Mapbox-iOS-SDK' end

工作正常,我可以看到它已安装在我的项目中:

enter image description here

在我的index.js控制器中,我使用以下内容:

var UIView = require('UIKit/UIView');
var mapView = require('Mapbox-iOS-SDK/Mapbox').Mapbox;

var map = new mapView().MGLMapView;
//map.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
map.setCenterCoordinate.CLLocationCoordinate2DMake(40.7326808,-73.9843407);
map.zoomLevel = 12;
map.animated = no;

$.container.add(map);

然后我从CLI运行项目,这会引发以下错误:

[ERROR] Script Error Couldn't find module: Mapbox-iOS-SDK/Mapbox for architecture: x86_64

1 个答案:

答案 0 :(得分:0)

目前正在调查包含Dash(-)的Pods / Frameworks的问题。您可以跟踪JIRA票证here。谢谢!