我正在尝试将 Mapbox 实现到我的 Hyperloop 项目中。但它没有像我期望的那样工作。
任何想法我做错了什么???
到目前为止,我已经通过可可豆荚将 Mapbox-iOS-SDK 导入到我的 AppC 项目中。
platform :ios, '7.0'
target 'Hyperloop-map-test' do
pod 'Mapbox-iOS-SDK' end
效果很好,我可以看到它已安装在我的项目中:
在我的 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