phonegapで動作するiPhoneアプリを開発しています。ArcGIS、esri の GIS マップ サービスに接続したい。
マップを追加する方法の例をいくつか見ました。彼らはxibファイルを作成し、そこでビューを設計し、それをViewControllerに接続します...私が望むのは、マップをWEBviewに追加することです。
すべてのフレームワークと私が試したすべてのものを追加した後:
MapViewDemoViewController *test = [[MapViewDemoViewController alloc]initWithFrame:CGRectMake(20,95, 285, 285)];
[[self.webView superview] addSubview:test]
しかし、次のようなエラーが表示されます:
Incompatible pointer types sending 'MapViewDemoViewController *' to parameter of type 'UIView *'
'MapViewDemoViewController' may not respond to 'initWithFrame:'
多分誰かがそれらのマップでいくらかの経験を持っていますか?