WGMapKit
数据统计时,有时需要在对应地图上显示相关数据,例如足迹,数量等等,这里提供画中国地图(包括各个省),和各省地图(包括各个市)的工具
效果
集成方法
1、直接把文件(WGMapCommonView.h和.m)拖入工程;
2、通过cocoapod
* 在项目还没有Podfile文件的话,先执行 pod init
* 然后添加代码 pod 'WGMapCommonView‘
* 执行 pod install(报错的话,可以先执行 pod repo update)
使用
* 引入头文件 #import "WGMapCommonView.h"
* 指定两个资源文件,一个是画地图的塞尔曲线数组、一个是各个子区域名字,rect,序号等信息
self.mapView.pathFileName = @"guangDongPath.plist";
self.mapView.infoFileName = @"guangDongInfo.plist";
* 视图可通过调整伸缩比例来调试显示不全问题
CGFloat scale = WGWidth/320;
self.mapView.transform = CGAffineTransformMakeScale(scale, scale);//宽高伸缩比例
self.mapView.frame = CGRectMake(0, 0, WGWidth, WGWidth * 0.75);
self.mapView.center = CGPointMake(WGWidth *0.5,WGHeight *0.5);