• 基于ArcGIS Viewer for Flex开发的一款跨平台的应用程序


    特点:

    1、基于ArcGIS Viewer for Flex开发的一款跨平台的应用程序;

    -(IBAction) showTOC:(id)sender
    {
        if (_tocViewController == nil) {
            _tocViewController = [[TocViewController alloc] initWithNibName:@"TocViewController" bundle:nil];
            _tocViewController.tocDelegate = self;
            
            //UINavigationController *tocNavigationController = [[UINavigationController alloc] initWithRootViewController:_tocViewController];
            
            _tocPopoverController = [[UIPopoverController alloc] initWithContentViewController:_tocViewController];
            [_tocPopoverController setValue:[NSNumber numberWithInt:2] forKey:@"popoverBackgroundStyle"];
            //[tocNavigationController release];
        }
        [_tocPopoverController presentPopoverFromRect:((UIButton*)sender).frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
    }

    2、可以通过配置文件来加载自己的数据。

    应用截图:

    应用现状:2011年10月28日更新,可正常使用,类别导航。

    第一章      其它第三方应用(暂不确定是否使用ArcGIS开发)

    (使用“名称”关键词可在app store中搜索下载应用)

  • 相关阅读:
    html5的离线缓存
    html5的本地存储
    html5的地理位置定位
    html5新添加的表单类型和属性
    html5的鼠标拖拽
    win下svn常用操作笔记
    git常用命令笔记
    centos7下NFS使用与配置
    centos7下mysql5.6的主从复制
    centos7下创建mysql5.6多实例
  • 原文地址:https://www.cnblogs.com/running/p/3210530.html
Copyright © 2020-2023  润新知